@charset "utf-8";

:root {
  --color-primary01: #6998f9;
  --color-primary02: #a7bdeb;
  --color-primary03: #2c6cf0;
  --color-primary04: #dde6f9;
  --color-primary05: #6890e1;
  --color-primary06: #153b8c;
  
  --color-sub01: #4da09c;
  --color-sub02: #e9f6f6;
	
		
  --color-primary: var(--color-primary03);
  --color-primary50: #f4e4fb;
  --color-primary100: #e3bbf6;
  --color-primary200: #d08df1;
  --color-primary300: #bc5beb;
  --color-primary400: #ac2ee7;
  --color-primary500: #9c00e1;
  --color-primary600: #8a00dc;
  --color-primary700: #6f00d5;
  --color-primary800: #5500d0;
  --color-primary900: #0000c4;
  --color-secondary: #00315b;
  --color-secondary50: #e6ebf1;
  --color-secondary100: #bfcdde;
  --color-secondary200: #96adc7;
  --color-secondary300: #6e8db0;
  --color-secondary400: #4b74a1;
  --color-secondary500: #215d94;
  --color-secondary600: #18558b;
  --color-secondary700: #0a4b80;
  --color-secondary800: #024173;
  --color-secondary900: #00315b;
  --color-success: #26a212;
  --color-success-hover: #1b850a;
  --color-info: #007aff;
  --color-info-bg: #24f5ff;
  --color-warning: #ff8c00;
  --color-error: #ff3b30;
  --color-error-bg: #fcecee;

  --color-gray00: #f5f5f5;
  --color-gray01: #e9e9e9;
  --color-gray02: #d9d9d9;
  --color-gray03: #c4c4c4;	
  --color-gray04: #9d9d9d;
  --color-gray05: #7b7b7b;
  --color-gray06: #555555;
  --color-gray07: #434343;
  --color-gray08: #262626;
  --color-gray09: #111111;

  --color-white01: rgba(255, 255, 255, 0.1);
  --color-white02: rgba(255, 255, 255, 0.2);
  --color-white03: rgba(255, 255, 255, 0.3);
  --color-white04: rgba(255, 255, 255, 0.4);
  --color-white05: rgba(255, 255, 255, 0.5);
  --color-white06: rgba(255, 255, 255, 0.6);
  --color-white07: rgba(255, 255, 255, 0.7);
  --color-white08: rgba(255, 255, 255, 0.8);
  --color-white09: rgba(255, 255, 255, 0.9);
  --color-white: rgba(255, 255, 255, 1);

  --color-emphasisH: rgba(255, 255, 255, 1);
  --color-emphasisM: rgba(255, 255, 255, 0.75);
  --color-emphasisD: rgba(255, 255, 255, 0.38);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: inherit;
}

ol,
ul,
li,
dl,
dt,
dd {
  list-style: none;
}

address {
  font: inherit;
}

img {
  max-width: 100%;
  vertical-align: top;
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-size: 14px;
  color: #292b2e;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Noto Sans KR", sans-serif;
  word-break: keep-all;
}
*::-webkit-scrollbar {
  background-color: rgba(0,0,0,0.1);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color-gray03);
}
.wrap {
  min-width: 1440px;
}
.headline01 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02rem;
  line-height: 1.2;
}

.headline02 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.02rem;
  line-height: 1.3;
}

.headline03 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02rem;
  line-height: 1.3;
}

.headline04 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02rem;
  line-height: 1.3;
}

.headline05 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02rem;
  line-height: 1.4;
}

.headline05R {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.02rem;
  line-height: 1.4;
}

.headline06 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02rem;
  line-height: 1.5;
}

.subtitle01 {
  font-size: 16px;
  font-weight: 500;
}

.subtitle02 {
  font-size: 14px;
  font-weight: 500;
}

.subtitle03 {
  font-size: 12px;
  font-weight: 500;
}

.p1 {
  font-size: 16px;
}

.p2 {
  font-size: 14px;
}

.p3 {
  font-size: 12px;
}

.txt {
  font-size: 16px;
  color: #888;
}

.dotTxt {
  position: relative;
  padding-left: 25px;
}

.dotTxt:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.dotTxt.dotTxt02:before {
  background-color: var(--color-secondary400);
}
.emphasisMC {
  color: var(--color-emphasisM);
}

.emphasisMBgC {
  background-color: var(--color-emphasisM);
}

.emphasisDC {
  color: var(--color-emphasisD);
}

.emphasisDBgC {
  background-color: var(--color-emphasisD);
}

.breadCrumbs {
  margin-top: 16px;
}

.breadCrumbs ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.breadCrumbs ul li {
  position: relative;
  margin: 0 15px;
}

.breadCrumbs ul li:after {
  content: "";
  position: absolute;
  top: 2px;
  right: -23px;
  width: 16px;
  height: 16px;
  background-image: url("/images/breadCrumbs-arrow.png");
}

.breadCrumbs ul li:first-child {
  margin-left: 0;
}

.breadCrumbs ul li:last-child:after {
  display: none;
}

.breadCrumbs ul li a {
  display: block;
  padding: 0 5px;
  color: #fff;
}

/* 버튼 */
.btn-box {
  display: inline-block;
}

.slick-arrow {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-indent: -999px;
  overflow: hidden;
}

.slick-prev {
  background-image: url("/images/slick-prev.png");
}

.slick-next {
  background-image: url("/images/slick-next.png");
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 80px;
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  border-width: 1px;
  border-style: solid;
  color: #fff;
  letter-spacing: -0.05rem;
}

.btn.btn-primary {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.btn.btnSecondary {
  border-color: var(--color-secondary500);
  background-color: var(--color-secondary500);
}

.btn.btn-gray {
  border-color: var(--color-gray03);
  background-color: var(--color-gray03);
}

.btn.btn-gray03 {
  border-color: var(--color-gray03);
  background-color: var(--color-gray03);
}

.btn.btn-gray09 {
  border-color: var(--color-gray09);
  background-color: var(--color-gray09);
}

.btn.btn-gray07 {
  border-color: var(--color-gray07);
  background-color: var(--color-gray07);
}

.btn.btn-primary.bd-btn {
  background-color: #fff !important;
  color: var(--color-primary);
}

.btn.btn-gray.bd-btn {
  background-color: #fff !important;
  color: var(--color-gray09);
}

.btn.btn-disabled.bd-btn {
  background-color: #fff !important;
  color: var(--color-gray02);
}

.btn.btn-secondary {
  color: var(--color-secondary600);
  border-color: var(--color-secondary600);
  background-color: var(--color-secondary600);
  color: #fff;
}
.btn.btn-secondary.bd-btn {
  background-color: #fff;
  color: var(--color-secondary600);
}
.btn.on {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.bottom-btns {
  margin-top: 64px;
}

.bottom-btns .flex {
  justify-content: center;
  gap: 20px;
}

.bottom-btns .flex.tal {
  justify-content: flex-start;
}

.bottom-btns .flex.tar {
  justify-content: flex-end;
}

.bottom-btns .btn {
  min-width: 180px;
}

/* input */
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"] {
  width: auto;
  height: 100%;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

.input-text input::placeholder {
  color: #b1b4b8;
}

.input-text {
  height: 30px;
  border: 1px solid #d4d4d4;
  font-size: 16px;
  position: relative;
  background-color: #fff;
}

.input-text>input {
  padding: 0 16px;
}
.input-text>form {
	display: block;
	height: 100%;
}
.input-text>form>input {
	padding: 0 16px;
}
.input-text.error {
  border-color: var(--color-error);
}

.input-text.success {
  border-color: var(--color-success);
}

.input-text.warning {
  border-color: var(--color-warning);
}

.input-text .btnPw {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  color: var(--color-gray07);
  font-size: 20px;
  line-height: 1;
}

.input-text .btnPw .material-icons {
  font-size: inherit !important;
}

.input-text .btnUtil {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.input-text .btnUtil img {
  vertical-align: inherit;
}

.input-text.pw .btnUtil {
  right: 45px;
}
.addressForm {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.addressForm .address01 {
  display: flex;
  gap: 24px;
  position: relative;
}

.addressForm .address01 .input-text {
  width: 98px;
}

.addressForm .address01 .btn {
  width: 160px;
  font-size: 14px;
}
.checkbox,
.radioBox {
  display: inline-block;
  position: relative;
  line-height: 20px;
}

.checkbox>input[type="checkbox"] {
  display: none;
}

.checkbox label {
  cursor: pointer;
  display: inline-block;
}

.checkbox label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gray02);
  background-color: #fff;
  vertical-align: top;
  margin-right: 5px;
}

.checkbox>input[type="checkbox"]:checked+label:before {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  background-image: url("/images/icon-check.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.radioBox>input[type="radio"] {
  display: none;
}

.radioBox label {
  cursor: pointer;
}

.radioBox label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gray02);
  background-color: #fff;
  vertical-align: top;
  box-sizing: border-box;
  margin-right: 5px;
}

.radioBox>input[type="radio"]:checked+label:before {
  background-color: var(--color-secondary);
  background-image: url("/images/icon-check.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.switcher {
  display: inline-block;
}

.switcher>input[type="checkbox"] {
  display: none;
}

.switcher label {
  display: block;
  width: 40px;
  height: 20px;
  border-radius: 20px;
  background-color: var(--color-gray);
  cursor: pointer;
  text-align: left;
  position: relative;
}

.switcher label span {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
}

.switcher label span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  transition: .2s;
}

.switcher>input[type="checkbox"]:checked+label {
  background-color: var(--color-primary);
}

.switcher>input[type="checkbox"]:checked+label span:after {
  transform: translateX(140%);
}

select {
  height: 48px;
  border: 1px solid var(--color-gray);
  padding: 0 16px;
  font-size: 16px;
  color: #5a5e61;
  background-image: url("/images/select-arrow.png");
  background-position: right 20px center;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  border: 1px solid var(--color-gray02);
  padding: 16px;
  font-size: 16px;
  color: #5a5e61;
  height: 240px;
  resize: none;
}

.selectBox {
  position: relative;
  width: 100%;
}

.selectBox .seleBtn {
  display: block;
  border: 1px solid var(--color-gray03);
  background-image: url("/images/select-arrow.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  margin: 0;
  padding: 0 18px;
  width: 100%;
  text-align: left;
}
.selectBox .seleBtn .txt {
  font-size: 16px;
  color: var(--color-gray07);
  line-height: 48px;
}
.selectBox ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1;
  border: 1px solid var(--color-gray03);
  margin-top: -1px;
  display: none;
  max-height: 287px;
  overflow: auto;
  padding: 14px 8px;
}
.selectBox ul li button {
  display: block;
  width: 100%;
  color: #000;
  padding: 6px;
  text-align: left;
}
.selectBox ul li:hover button {
  background-color: rgba(0, 0, 0, 0.08);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: none !important;
  border: none !important;
  color: var(--color-gray09);
}

.material-icons {
  vertical-align: top;
  color: inherit;
}

.blind {
  display: none !important
}

.block {
  display: block !important;
}

.inlineBlock {
  display: inline-block !important;
}

.w100 {
  width: 100% !important;
}

.colorPrimary {
  color: var(--color-primary);
}

.colorSecondary {
  color: var(--color-secondary);
}

.colorSecondary500 {
  color: var(--color-secondary500);
}

.colorGray05 {
  color: var(--color-gray05);
}

.colorError {
  color: var(--color-error);
}

.mtn {
  margin-top: 0 !important;
}
.mt05 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.ptn {
  padding-top: 0 !important;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

br.m {
  display: none;
}

img.m {
  display: none;
}

.ml10 {
  margin-left: 10px;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}
.underline {
  text-decoration: underline;
}
/* datepicker */
.ui-widget-header {
  border: none !important;
  background-color: #fff !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 2px !important;
  width: 20px !important;
  height: 20px !important;
  border: none !important;
  background-color: #fff !important;
}

.ui-icon-circle-triangle-w,
.ui-icon-circle-triangle-e {
  background-position: 0 0 !important;
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px !important
}

.ui-datepicker .ui-datepicker-next {
  right: 2px !important
}

.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-image: url("/images/calendar-arrow-prev.png");
}

.ui-datepicker .ui-datepicker-next .ui-icon {
  background-image: url("/images/calendar-arrow-next.png");
}

.ui-datepicker span[title="Sunday"] {
  color: var(--color-error);
}

.ui-datepicker span[title="Saturday"] {
  color: var(--color-info);
}

.ui-datepicker td span,
.ui-datepicker td a {
  text-align: center !important;
}

.ui-datepicker td span:hover,
.ui-datepicker td a:hover {
  background-color: var(--color-primary) !important;
  color: #fff;
}

/* 달력 */
.calendar {
  width: 100%;
  background-color: #f5f5f5;
  padding-top: 52px;
  position: relative;
  border-bottom: 1px solid var(--color-gray01);
}

.calendar .calendarHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.calendar .calendarHeader .arrow {
  width: 52px;
  height: 52px;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar .calendarHeader .month {
  font-size: 24px;
  font-weight: 600;
}

.calendar .calendarBody {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
  padding: 24px;
  height: 100%;
}

.calendar .calendarBody .week {
  display: flex;
  flex-wrap: wrap;
}

.calendar .calendarBody .day {
  width: 14.28%;
  font-size: 16px;
  padding: 0 16px;
  position: relative;
  height: 46px;
}

.calendar .calendarBody .day span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.calendar .calendarBody .day .marker {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.calendar .calendarBody .day.off {
  opacity: 0.45;
}

.calendar .calendarBody .day:nth-child(1) {
  color: #ff3b30;
}

.calendar .calendarBody .day:nth-child(7) {
  color: #1877f2;
}

.calendar .calendarBody .day.on span {
  color: #fff;
  background-color: var(--color-primary);
}

.calendar .calendarBody .day.on .marker {
  background-color: #fff;
}
/* 달력 */
.calendar {
  width: 100%;
  height: calc(100% - 116px);
  background-color: #f5f5f5;
  padding-top: 52px;
  position: relative;
  border-bottom: 1px solid var(--color-gray01);
}
.calendar .calendarHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.calendar .calendarHeader .arrow {
  width: 52px;
  height: 52px;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar .calendarHeader .month {
  font-size: 24px;
  font-weight: 600;
}
.calendar .calendarBody {
  display: grid;
  gap: 12px;
  font-weight: 500;
  padding: 24px;
  height: 100%;
  width:100%;
  grid-template: "a b c d e f g" 1fr 
					"1 2 3 4 5 6 7 " 1fr
					"8 9 10 11 12 13 14" 1fr
					"15 16 17 18 19 20 21 " 1fr
					"22 23 24 25 26 27 28" 1fr
					"29 30 31 32 33 34 35 " 1fr 
					"36 37 38 39 40 41 42" 1fr / 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-flow:row;
}

.calendar .calendarBody div {
  font-size: 16px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 40px;
  height: 40px;
}
.calendar .calendarBody .sat {
	color:#1877f2;
}
.calendar .calendarBody .sun {
	color: #ff3b30;
}
.calendar .calendarBody .blur {
	opacity:0.45;
}
.calendar .calendarBody .on {
	color: #fff;
	background-color: var(--color-primary600);
}
.calendar .calendarBody .on .marker {
	background-color: #fff;
}
.calendar .calendarBody .marker {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.calendar .calendarBody .off {
  opacity: 0.45;
}
.calendar .calendarBody .comment {
	display: block;
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 1;
	max-width: unset;
	width: 240px;
	height: auto;
	background-color: #fff;
	border-radius: 10px;
	font-size: 14px;
	color: var(--color-gray07);
	font-weight: 400;
	padding: 10px;
	border: 1px solid var(--color-gray02);
}
/* 공지 */

.noticeIndivisual {
	cursor:pointer;
}

.memberLink {
	cursor:pointer;
}
/* 말줄임표 */
.ellipsis1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis2 {
  max-height: 2.8em;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis3 {
  max-height: 3.6em;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 게시판 */
.boardTopUtil {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.boardTopUtil .boardSearchBox {
  background: none;
  padding: 0;
}
.boardTopUtil .boardSearchBox .input-text {
  height: 50px;
  width: 449px;
}
.boardTotal {
  font-size: 16px;
  color: var(--color-gray05);
  font-weight: 500;
}

.boardTotal .colorPrimary {
  color: #000;
}

.boardSearchBox {
  display: flex;
  align-items: center;
  padding: 48px 0;
  background-color: var(--color-gray00);
}

.boardSearchBox .searchBox {
  display: flex;
  gap: 8px;
}

.boardSearchBox .searchBox01 {
  width: 143px;
  margin-right: 8px;
}

.boardSearchBox .searchBox02 .input-text {
  width: 299px;
}

.boardSearchBox .searchBox02 .btn {
  height: 50px;
}

.boardList {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--color-gray03);
  border-collapse: collapse;
  word-break: break-all;
}

.boardList .boardHeader {
  display: table-header-group;
  font-weight: 500;
  background-color: #f8f8f8;
  font-size: 16px;
}
.boardList .boardHeader .boardTr {
  border-bottom-color: #777;
}
.boardList .boardBody {
  display: table-row-group;
}

.boardList .boardTr {
  display: table-row;
  border-bottom: 1px solid var(--color-gray03);
}

.boardList .boardCell {
  display: table-cell;
  vertical-align: middle;
  padding: 20px 10px;
}
.boardList .boardBody .boardCell {
  /* border-right: 1px solid #777; */
}
.boardList .boardBody .boardCell:last-child {
  border-right: none;
}
.boardList.linkTable .boardBody .boardTr {
  cursor: pointer;
}

.boardList.linkTable .boardBody .boardTr:hover {
  background-color: var(--color-secondary50);
}

.boardList.notice .boardCell:nth-child(1),
.boardList.notice .boardCell:nth-child(2) {
  width: 145px;
}

.boardList.notice .boardCell:nth-child(4),
.boardList.notice .boardCell:nth-child(5) {
  width: 145px;
}
.boardList.news .boardCell:nth-child(1) {
  width: 145px;
}
.boardList.news .boardCell:nth-child(3),
.boardList.news .boardCell:nth-child(4) {
  width: 169px;
}

.boardTitle {
  display: inline-block;
  position: relative;
  max-width: 100%;
  vertical-align: top;
  color: var(--color-gray07);
  max-height: 2.8em;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.boardTitle img {
  margin-top: 5px;
  margin-right: 8px;
}

.boardCate {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  border: 1px solid var(--color-gray06);
  color: #fff;
  min-width: 58px;
  letter-spacing: -1px;
  font-weight: 500;
}

.boardCate.cate01 {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.boardCate.bdCate {
  background-color: #fff;
  ;
}

.boardList .mobileCell {
  display: none;
}

.boardNonList {
  padding: 20px 10px;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid var(--color-gray);
}

.boardMore {
  margin-top: 40px;
  display: none;
}

.boardMore button {
  display: block;
  width: 100%;
  border: 1px solid var(--color-gray02);
  height: 48px;
  font-size: 16px;
  color: var(--color-gray07);
}

/* 게시판 뷰 */
.boardView {
  border-top: 1px solid #000;
}

.boardViewHeader .flex {
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--color-gray02);
}

.boardViewHeader .boardRight {
  text-align: right;
}

.boardViewHeader .boardViewTitle {
  padding: 24px 32px;
  border-bottom: 1px solid var(--color-gray02);
}
.boardViewHeader .boardViewTitle .flex {
  padding: 0;
  border-bottom: none;
}
.boardViewHeader .boardViewTitle p {
  font-size: 16px;
  color: var(--color-gray09);
  font-weight: 500;
}

.boardViewHeader dl {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.boardViewHeader dl dt {
  color: var(--color-gray09);
  font-weight: 500;
  margin-right: 16px;
}

.boardViewHeader dl dd {
  color: var(--color-gray05);
}

.boardViewHeader .headerLeft {
  display: flex;
  align-items: center;
}

.boardViewHeader .headerLeft dl {
  margin-right: 56px;
}

.boardViewHeader .boardNew {
  display: none;
}

.boardView .boardCate {
  height: 24px;
  font-size: 12px;
}

.boardViewBody {
  padding: 40px 32px;
}

.prevNext {
  margin-top: 60px;
  color: var(--color-gray09);
  font-weight: 500;
}

.boardList.prevNext .boardCell:nth-child(1) {
  width: 100px;
}

.boardList.prevNext .boardCell:nth-child(3) {
  width: 140px;
}
.boardList.prevNext .boardCell {
  border-right: none;
}
.boardList.prevNext .boardCell button {
  display: none;
}

.downloadBox dl {
  display: flex;
  font-weight: 500;
  background-color: rgba(0,0,0,0.1);
  border-bottom: 1px solid var(--color-gray03);
}
.downloadBox dl dt {
  font-size: 16px;
  flex-wrap: wrap;
  color: var(--color-gray09);
  align-items: center;
  width: 127px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.downloadBox dl dd {
  width: calc(100% - 127px);
  padding: 36px 24px;
  position: relative;
  background-color: #fff;
}
.downloadBox dl dd ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.downloadBox dl dd ul li {
  position: relative;
  padding: 9px 114px 9px 0;
}
.downloadBox dl dd ul li span {
  display: inline-block;
  max-width: 100%;
}
.downloadBox dl dd img {
  margin-top: 4px;
  margin-right: 5px;
}
.downloadBox dl dd .btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 94px;
  height: 36px;
  font-size: 16px;
}
/* 페이징 */
.paging {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 42px;
}

.paging button {
  border: 1px solid var(--color-gray04);
  width: 48px;
  height: 48px;
  margin: 0 5px;
}

.paging ul {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.paging ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 16px;
  color: var(--color-gray06);
  font-weight: 500;
  border: 1px solid transparent;
}

.paging ul li.on a {
  color: #fff;
  background-color: var(--color-secondary500);
  border-color: var(--color-secondary500);
}

/* 자주하는질문 */
.boardTopUtil.faq {
  justify-content: flex-end;
}

.faq .boardSearchBox .searchBox01 {
  width: 180px;
}

.faqList {
  border-top: 1px solid #000;
}

.faqList dl {
  font-size: 16px;
  color: var(--color-gray07);
}

.faqList dl dt {
  position: relative;
  font-size: 18px;
  padding: 28px 86px 28px 0;
  border-bottom: 1px solid var(--color-gray02);
  display: flex;
  align-items: center;
}

.faqList dl dt .cate {
  width: 160px;
  font-size: 16px;
  color: #6e7275;
  padding: 0 16px 0 32px;
}

.faqList dl dt .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  height: 12px;
}

.faqList dl dt .arrow img {
  transition: 0.3s;
}

.faqList dl dt.on .arrow img {
  transform: rotateX(180deg);
}

.faqList dl dt {
  cursor: pointer;
}

.faqList dl dd {
  padding: 48px 56px 88px 160px;
  border-bottom: 1px solid var(--color-gray02);
  display: none;
}

#subVisual {
  position: relative;
  height: 310px;
  margin: 0 90px;
}

#subVisual .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 50%;
}

#subVisual:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 90px;
  background-color: var(--color-gray08);
}

#subVisual .imgBox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

#subVisual .imgBox.m {
  display: none;
}

#subVisual .imgBox02 {
  background-size: 100% auto;
  background-position: 50% 0;
}

#subVisual .container {
  display: flex;
  align-items: center;
}

#subVisual .txtBox {
  width: 100%;
  text-align: left;
  color: #fff;
}

.subContents {
  position: relative;
  min-height: 800px;
  width: 1153px;
}

.subContents .section01 {
  margin-top: 0;
}

.lnb {
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
}

.lnb ul {
  display: flex;
}

.lnb ul li {
  width: 100%;
}

.lnb ul li a {
  display: block;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  color: var(--color-gray05);
  font-weight: 500;
  background-color: var(--color-gray01);
  text-align: center;
}

.lnb ul li.on a {
  color: #fff;
  background-color: var(--color-primary);
}

.subContentsWrap .container {
  padding-top: 40px;
  padding-bottom: 130px;
  display: flex;
  justify-content: space-between;
  gap: 90px;
}

.subContentsWrap .subLnbWrap {
  width: 272px;
}

.subContentsWrap .subLnbWrap .subLnb>ul>li>a {
  display: block;
  padding: 18px 0;
  color: #9b9b9b;
  font-weight: 500;
  border-bottom: 1px solid #d3d2d2;
  background-image: url("/images/subLnbArrow.png");
  background-position: right center;
  background-repeat: no-repeat;
}

.subContentsWrap .subLnbWrap .subLnb>ul>li.arrNone>a {
  background: none !important;
}

.subContentsWrap .subLnbWrap .subLnb .sub {
  padding: 18px 0;
  background-color: #f2f2f2;
}

.subContentsWrap .subLnbWrap .subLnb .sub li {
  margin-top: 10px;
}

.subContentsWrap .subLnbWrap .subLnb .sub li:first-child {
  margin-top: 0;
}

.subContentsWrap .subLnbWrap .subLnb .sub li a {
  display: block;
  font-size: 15px;
  color: #777;
  padding: 3px 0;
  padding-left: 20px;
  letter-spacing: -0.02em;
  border-bottom: none;
}

.subContentsWrap .subLnbWrap .subLnb>ul>li.on>a {
  color: var(--color-primary);
  background-image: url("/images/subLnbArrowOn.png");
}

.subContentsWrap .subLnbWrap .subLnb>ul>li.on .sub {
  display: block;
}

.subContentsWrap .subLnbWrap .subLnb>ul>li.on .sub li.on a {
  background-color: var(--color-primary50);
  position: relative;
  color: var(--color-primary700);
}

.subContentsWrap .subLnbWrap .subLnb>ul>li.on .sub li.on a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-primary);
}
.subContentsWrap .subLnbWrap .btnMobileMenu {
  display: none;
}
.subContentsWrap .subLnbWrap .lnbTitleBox {
  background-image: url("/images/lnbTitleBoxBg.png");
  background-size: cover;
  height: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.subContentsWrap .subContents {
  width: calc(100% - 272px);
}
.subContentsWrap .subContents.fullsize {
  width: 100%;
  min-height: unset !important;
}
/* 테이블 */
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: #333;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
  word-break: break-all;
}

.contentsTable thead {
  background-color: #f3f4f5;
}

.contentsTable thead th {
  padding: 20px 10px;
  font-size: 20px;
  font-weight: 700;
}

.contentsTable tbody tr {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
}

.contentsTable tbody td {
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  border-right: 1px solid #777;
  height: 80px;
}

.contentsTable tbody td:last-child {
  border-right: none;
}
.contentsTable .bdr {
  border-right: 1px solid #777 !important;
}
.contentsTable .diagonal {
  background-image: url("/images/diagonal.png");
  background-size: 100% 100%;
  position: relative;
}
.contentsTable .diagonal span {
  position: absolute;
}
.contentsTable .diagonal span:nth-child(1) {
  top: 14px;
  right: 14px;
}
.contentsTable .diagonal span:nth-child(2) {
  bottom: 14px;
  left: 14px;
}
.tab {
  margin-bottom: 77px;
}

.tab ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab ul li {
  width: 100%;
  text-align: center;
}

.tab ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  border: 1px solid var(--color-gray02);
}

.tab ul li.on a {
  background-color: #ddd;
  color: var(--color-primary);
}

.tabContents ol>li {
  display: none;
}

.tabContents ol>li:first-child {
  display: block;
}
.agreeAll {
  border-bottom: 2px solid var(--color-gray09);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
}

.agreeAll p {
  font-size: 16px;
}

.agreeAll .check {
  color: var(--color-primary);
}

.agreeAll .checkbox label {
  display: flex;
  flex-direction: row-reverse;
  color: var(--color-primary);
  font-size: 18px;
}

.agreeAll .checkbox label:before {
  margin-left: 10px;
  margin-right: 0;
}

.termsWrap ul li {
  margin-top: 40px;
}

.termsWrap .terms-tit {
  font-size: 21px;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray09);
  padding-bottom: 17px;
}

.termsWrap .terms-tit img {
  margin-top: 3px;
}

.termsWrap dl {
  border-bottom: 1px solid var(--color-gray03);
}

.termsWrap dl dt {
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.termsWrap dl dt .checkbox {
  width: 100%;
  z-index: 1;
}
.termsWrap dl dt .checkbox .btnSlide {
  width: calc(100% - 31px);
  text-align: left;
  padding: 20px 0;
}
.termsWrap dl dt:after {
  content: "";
  position: absolute;
  top: 27px;
  right: 20px;
  width: 18px;
  height: 10px;
  background-image: url("/images/terms-arrow.png");
  background-repeat: no-repeat;
  transition: .3s;
  z-index: 0;
}

.termsWrap dl dt.on:after {
  transform: rotateX(180deg);
}

.termsWrap dl dd {
  padding: 44px;
  border-top: 1px solid var(--color-gray03);
  background-color: var(--color-gray00);
  display: none;
  height: 194px;
  overflow: auto;
}

.termsWrap dl dd .tit {
  font-size: 21px;
  font-weight: 500;
  margin: 8px 0;
}

.termsWrap dl dd .txt {
  font-size: 16px;
  color: var(--color-gray07);
}
#mobileAllMenu {
  position: fixed;
  top: 90px;
  right: -100%;
  bottom: 0;
  width: 390px;
  max-width: 100%;
  background-color: #fff;
  z-index: 11;
  border-top: 1px solid var(--color-gray02);
  display: none;
}

#mobileAllMenu .memberBox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 282px;
  background-image: url("/images/memberBox-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  color: #000;
  padding: 67px 20px 28px 32px;
}

#mobileAllMenu .memberBox .userBox {
  margin-top: 70px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  margin-right: -20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#mobileAllMenu .memberBox .userBox a {
  font-size: 24px;
  color: var(--color-gray05);
  font-weight: 500;
}

#mobileAllMenu .memberBox .userBox a span {
  color: #000;
}

#mobileAllMenu .memberBox .userBox a img {
  margin-top: 10px;
  margin-left: 10px;
}

#mobileAllMenu .memberBox .userBox p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray05);
}

#mobileAllMenu .memberBox .userBox p span {
  font-size: 24px;
  color: #000;
}

#mobileAllMenu .memberBox .loginBefore {
  justify-content: space-between;
  align-items: flex-end;
}

#mobileAllMenu .memberBox .loginBefore p {
  font-size: 12px;
  color: #000;
}

#mobileAllMenu .memberBox .loginBefore a {
  font-size: 16px;
  color: var(--color-primary300);
  font-weight: 500;
  text-decoration: underline;
}

#mobileAllMenu .memberBox .loginAfter {
  align-items: center;
}

#mobileAllMenu .memberBox .loginAfter dl {
  display: flex;
  align-items: flex-end;
  margin-right: 32px;
}

#mobileAllMenu .memberBox .loginAfter dl dt {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 12px;
}


#mobileAllMenu .memberBox .loginAfter dl dd a {
  font-size: 16px;
  color: var(--color-primary300);
  font-weight: 500;
  text-decoration: underline;
}

#mobileAllMenu .btnAllMenuClose {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

#mobileAllMenu .allMenu {
  height: 100%;
  overflow: auto;
}

#mobileAllMenu .allMenu>ul>li:first-child {
  margin-top: 0;
}

#mobileAllMenu .allMenu>ul>li>a {
  display: block;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  padding: 20px;
  border-bottom: 1px solid var(--color-gray02);
  position: relative;
}
#mobileAllMenu .allMenu>ul>li>a .material-icons {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: .3s;
}
#mobileAllMenu .allMenu>ul>li>a.on {
  color: var(--color-primary03);
  border-color: var(--color-primary02);
} 
#mobileAllMenu .allMenu>ul>li>a.on .material-icons {
  transform: rotateX(180deg);
}
#mobileAllMenu .allMenu>ul>li>a img {
  margin-right: 8px;
}

#mobileAllMenu .allMenu .sub {
  padding: 30px 25px;
  display: none;
}

#mobileAllMenu .allMenu .sub li {
  margin-top: 16px;
}

#mobileAllMenu .allMenu .sub li:first-child {
  margin-top: 0;
}

#mobileAllMenu .allMenu .sub li a {
  font-size: 16px;
  color: var(--color-gray07);
  font-weight: 500;
}
#mobileAllMenu .allMenu .sub li a br {
	display: none;
}
#mobileAllMenu .copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 84px;
  text-align: center;
  background-color: var(--color-gray01);
  padding: 24px 10px;
}

#mobileAllMenu .copyright p {
  font-size: 12px;
  color: var(--color-gray05);
  font-weight: 500;
}

#mobileAllMenu .terms {
  position: absolute;
  bottom: 84px;
  left: 0;
  right: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
}

#mobileAllMenu .terms a {
  font-size: 14px;
  color: var(--color-gray07);
  font-weight: 500;
  display: block;
}

#mobileAllMenu .terms a:last-child {
  color: var(--color-gray09);
  text-decoration: underline;
}
#mobileAllMenu .btns {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
#mobileAllMenu .btns a {
  margin-right: 18px;
}
#btnTop {
  position: fixed;
  right: 10px;
  z-index: 9;
  bottom: 100px;
  transition: .3s;
}
@media all and (max-width: 1024px) {

  /* 게시판 */
  .boardList.notice .boardCell:nth-child(1),
  .boardList.notice .boardCell:nth-child(2) {
    width: 88px;
  }

  .boardList.notice .boardCell:nth-child(4),
  .boardList.notice .boardCell:nth-child(5) {
    width: 98px;
  }

  .boardList.notice .boardCell:nth-child(5) {
    width: 100px;
  }

  .boardSearchBox .searchBox01 {
    width: 248px;
  }

  .boardSearchBox .searchBox02 .input-text {
    width: 219px;
  }
}

@media all and (max-width: 768px) {
  #subVisual {
    height: 400px;
  }

  #subVisual .imgBox.pc {
    display: none;
  }

  #subVisual .imgBox.m {
    display: block;
  }

  /* 회원정보입력 */
  .joinForm dl dt {
    width: 204px;
  }

  .joinForm dl dd {
    width: calc(100% - 204px);
  }

  /* 자주하는질문 */
  .faqList dl dd {
    padding: 48px 56px 88px;
  }

  .editFormGroup.btnBox {
    width: 484px;
  }

  /* 페이징 */
  .paging button,
  .paging ul li a {
    width: 38px;
    height: 38px;
  }
}

.contentsTitle {
  background-color: var(--color-primary);
  color: #fff;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.contentsTitle span {
  line-height: 1;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 10;
  display: none;
}
.popup .innerWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  width: 1300px;
  background-color: #fff;
}
.popup .innerWrap .inner {
  height: 100%;
  overflow-y: auto;
}
.popup.termsPopup .innerWrap {
  width: 700px;
  height: 526px;
  padding: 20px 15px 57px;
}
.popup.termsPopup .innerWrap .inner {
  height: auto;
}
.popup.termsPopup .btnClose {
  width: 32px;
  height: 32px;
  top: 13px;
  right: 8px;
}
.popup.termsPopup .tit {
  border-bottom: 1px solid var(--color-gray09);
  padding-bottom: 7px;
  margin-bottom: 14px;
}
.popup.termsPopup .txtBox {
  padding: 20px 15px;
  height: 400px;
  background-color: var(--color-gray01);
  overflow: scroll;
}
.popup.termsPopup .txtBox p {
  font-size: 14px;
}
.bidBox {
  overflow: auto;
  text-align: center;
}
.bidBox iframe {
	width: 100%;
	min-width: 960px;
}
.warningBox {
  color: #000;
  text-align: center;
  padding-top: 20px;
  display: none;
}
.warningBox .main {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
.warningBox .sub {
  font-size: 13px;
  font-weight: 500;
}
.warningBox .sub span {
  color: var(--color-primary);
}
.warningBox .bottom-btns {
  margin-top: 40px;
}
@media all and (max-width: 640px) {
  br.pc {
    display: none;
  }

  br.m {
    display: block;
  }

  img.pc {
    display: none;
  }

  img.m {
    display: initial;
  }
  .headline03 {
    font-size: 18px;
  }
  #btnTop {
    width: 40px;
    height: 40px;
  }
  #subVisual {
    height: 220px;
  }

  #subVisual .imgBox02 {
    background-size: 100% 100%;
  }
  #subContents {
  	min-height: 500px;
  }
  .breadCrumbs {
    font-size: 12px;
  }
  
  /* 공지사항 */
  .boardList .boardHeader {
    display: none;
  }

  .boardTotal {
    display: none;
  }
  .boardTopUtil > form {
    width: 100%;
  }
  .boardSearchBox {
    display: block;
  }

  .boardSearchBox,
  .boardSearchBox .searchBox01,
  .boardSearchBox .searchBox,
  .boardSearchBox .searchBox02 .input-text {
    width: 100%;
  }

  .boardSearchBox .searchBox02 {
    margin-top: 8px;
  }

  .boardList .boardBody,
  .boardList .boardTr,
  .boardList .boardCell {
    display: block;
    text-align: left;
    position: relative;
  }

  .boardList .boardTr {
    padding: 16px 0;
  }

  .boardList .boardCell {
    padding: 0;
    text-align: left;
    width: 100% !important;
  }
  .boardList .boardCell.bottomCell {
    display: inline-block;
    width: auto !important;
  }
  .boardList .boardCell[data-mobile-title]:before {
    content: attr(data-mobile-title);
    margin-right: 2px;
  }
  .boardList .boardCell.etc {
    position: absolute;
    bottom: 16px;
    left: 125px;
    width: auto !important;
    color: var(--color-gray05);
  }
  .boardList .boardCell.date {
    color: var(--color-gray05);
    margin-top: 4px;
    width: 125px !important;
  }
  .boardList.news .boardCell.date {
  	width: 140px !important;
  }
  .boardList.news .boardCell.etc {
  	left: 140px;
  }
  .boardList .boardCell.mobileNone {
    display: none;
  }

  .boardList .boardTitle {
    margin-top: 8px;
    font-size: 16px;
  }

  .boardList.mobileNone {
    display: none;
  }

  .boardList .mobileCell {
    display: flex;
    gap: 8px;
    margin-top: 12px;
  }

  .boardList .mobileCell .boardCate {
    width: 64px;
    height: 24px;
  }

  /* 게시판 뷰 */
  .boardViewHeader .flex {
    padding: 10px 0;
  }
  .boardViewHeader .boardViewTitle .flex {
    display: block;
  }
  .boardViewHeader .boardViewTitle dl:last-child {
    padding-top: 10px;
    border-top: 1px solid var(--color-gray02);
    margin-top: 10px;
  }
  .boardViewHeader dl {
    font-size: 14px;
    align-items: flex-start;
  }
  .boardViewHeader .headerLeft dl {
    font-size: 14px;
    margin-right: 8px;
  }

  .boardViewHeader .headerLeft .boardNum {
    display: none;
  }

  .boardViewHeader .boardNew {
    display: none;
  }

  .boardViewHeader .boardViewTitle {
    padding: 10px 0;
  }

  .boardViewHeader .boardViewTitle p {
    font-size: 14px;
  }
  .boardView.news .boardViewHeader .headerLeft {
  	flex-wrap: wrap;
  }
  .boardViewBody {
    padding: 12px 0;
  }

  .boardList.prevNext .boardCell {
    font-size: 14px;
    color: var(--color-gray09);
    font-weight: 500;
  }
  .boardList.prevNext .boardTitle {
    font-size: 14px;
    margin-top: 0;
  }
  .boardList.prevNext .boardCell:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 80px !important;
  }
  .boardList.prevNext .boardCell:nth-child(2) {
    display: block;
    width: calc(100% - 102px) !important;
  }
  .boardList.prevNext .boardCell:nth-child(2) a {
    display: inline-block;
    max-width: 100%;
  }
  .boardList.prevNext .boardCell:nth-child(3) {
    display: none;
  }
  .boardList.prevNext .boardBody {
    /* display: flex;
    justify-content: space-between; */
  }

  .boardList.prevNext .boardBody .boardTr {
    display: flex;
    /* width: auto;
    border-bottom: none; */
  }

  .boardList.prevNext .boardCell button {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-gray04);
  }

  .boardList.prevNext .boardCell button .material-icons {
    color: var(--color-gray04);
  }
  .downloadBox dl dd ul li {
    padding: 6px 90px 6px 0;
  }
  .downloadBox dl {
    flex-direction: column;
  }
  .downloadBox dl dt {
    display: block;
    padding: 10px;
  }
  .downloadBox dl dd {
    width: 100%;
    padding: 10px;
  }
  .downloadBox dl dd .btn {
    font-size: 14px;
    width: auto;
    padding: 10px;
  }
  /* 페이징 */
  .paging button,
  .paging ul li a {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  .paging button {
    margin: 0 2px;
    border: none;
  }

  .paging ul {
    margin: 0 2px;
  }

  /* 자주하는질문 */
  .faqList dl dt {
    padding: 12px 52px 12px 0;
    font-size: 14px;
    word-break: break-all;
  }

  .faqList dl dt .cate {
    width: 180px;
    font-size: 14px;
    padding: 0 8px 0 10px;
  }

  .faqList dl dt .arrow {
    right: 16px;
    width: 15px;
  }

  .faqList dl dd {
    padding: 16px 20px 40px;
  }

  /* 버튼 */
  .bottom-btns .flex {
    gap: 8px;
  }

  .bottom-btns .flex .btn {
    width: 100%;
    min-width: unset;
  }

  .bottom-btns.btn03 .flex {
    flex-wrap: wrap;
    gap: 12px;
  }

  .bottom-btns.btn03 .flex .btn {
    width: calc(50% - 6px);
  }

  .bottom-btns.btn03 .flex .btn:nth-child(3) {
    width: 100%;
    margin-top: 4px;
  }

  /* 주소입력 */
  .addressForm {
    position: relative;
    padding-bottom: 58px;
  }

  .addressForm .address01 {
    padding-right: 0;
  }

  .addressForm .address01 .btn {
    top: auto;
    bottom: 0;
    width: 100%;
  }
  .agreeAll {
    display: block;
    padding-top: 0;
    padding-bottom: 16px;
  }

  .agreeAll .checkbox {
    width: 100%;
    margin-top: 17px;
  }

  .agreeAll p,
  .agreeAll .checkbox label {
    font-size: 14px;
  }

  .termsWrap ul li {
    font-size: 32px;
  }

  .termsWrap .terms-tit {
    font-size: 16px;
  }

  .termsWrap .terms-tit img {
    margin-top: -1px;
  }

  .termsWrap dl dt {
    font-size: 14px;
    padding: 0 16px;
    padding-right: 44px;
  }

  .termsWrap dl dt:after {
    top: 24px;
    right: 16px;
  }
  .termsWrap dl dt .checkbox .btnSlide {
    padding: 16px 0;
  }
  .termsWrap dl dd {
    padding: 24px;
  }

  .termsWrap dl dd .tit {
    font-size: 16px;
  }

  .termsWrap dl dd .txt {
    font-size: 14px;
  }
  .bidBox {
    display: none;
  }
  .warningBox {
    display: block;
  }
}