@charset "UTF-8";
/* ^scss에서 수정해주세요!  Don't edit .css file, Only work on the scss*/

/* =========================
   선택 슬롯 영역
========================= */
#selectedSlots {
  display: flex;
  flex-wrap: nowrap;                /* 한 줄 유지 */
  gap: 10px;
  padding: 0 10px;
  margin: 0;
  /* overflow-x: auto; */
  box-sizing: border-box;
  padding-bottom: 30px; 
  -webkit-overflow-scrolling: touch; /* 모바일 부드러운 스크롤 */
}

#selectedSlots::-webkit-scrollbar {
  height: 12px;
}

#selectedSlots::-webkit-scrollbar-track {
  background-color: #f3f3f3;

}

#selectedSlots::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #cccccc;
}

#selectedSlots::-webkit-scrollbar-button {
  width: 0;
}

/* 슬롯 아이템 */
#selectedSlots li {
  flex: 0 1 120px;                /* 기본 120px + 줄어듦 허용 */
  min-width: 100px;               /* 너무 작아지는 것 방지 */
  max-width: 140px;               /* 너무 커지는 것 방지 */
  list-style: none;
}

/* 장 이름 */
.c_scroll_txt {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 이미지 박스 */
.cs_box {
  width: 100%;
  aspect-ratio: 0 / 2.5;
  /* height: 270px; */
  min-height: 86%;
  border: 1px solid #ddd;
  box-sizing: border-box;
  overflow: hidden;
  background: #fafafa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 선택 전 상태 */
.cs_box.empty {
  color: #999;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 이미지 */
.cs_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 선택된 상품명 */
.selected_name {
  font-size: 13px;
  margin-top: 4px;
  color: #444;
  text-align: center;
}

/* =========================
   탭 영역
========================= */
.tabs4 {
  display: flex;
  overflow-x: auto;
  gap: 6px;
  padding: 0 10px;
  margin-bottom: 10px;
}

.tabs4::-webkit-scrollbar {
  display: none;
}

.tab-link {
  flex: 0 0 auto;
  padding: 8px 12px;
  background: #eee;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.tab-link.current4 {
  background: #333;
  color: #fff;
}

/* =========================
   탭 컨텐츠
========================= */
.tab-content4 {
  display: none;
}

.tab-content4.current4 {
  display: block;
}

/* 상품 리스트 */
.c_scroll_area_01 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 10px;
  margin: 0;
}

.c_scroll_area_01 li {
  width: calc(50% - 5px);
  list-style: none;
  cursor: pointer;
}

/* 상품 텍스트 */
.c_scroll_txt_01 {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

/* 상품 이미지 */
.cs_box_01 {
  /* width: 100%;
  aspect-ratio: 1 / 1; */
  border: 1px solid #ddd;
  overflow: hidden;
}

.cs_box_01 img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
}

/* 선택된 상품 표시 */
/* .c_scroll_area_01 li.active {
  border: 2px solid #333;
} */

/* =========================
   모바일 대응
========================= */
@media (max-width: 768px) {

  /* 슬롯 더 작게 */
  #selectedSlots li {
    flex: 0 1 100px;
  }

  .c_scroll_txt {
    font-size: 13px;
  }

  .selected_name {
    font-size: 12px;
  }

  /* 상품 리스트 2열 유지 */
  .c_scroll_area_01 li {
    width: calc(50% - 5px);
  }
}


input[type="checkbox"].my-checkbox2:checked:after{
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border-bottom: 2px solid #0181e9;
  border-right: 2px solid #0181e9;
  transform: rotate(45deg);
  background: #fff;
}

input[type="checkbox"].my-checkbox2 + label{
  vertical-align: 6px;
}

.c_new_title_01 {
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid #c7d7d1;
	text-align: center;
	padding: 20px 0 15px 0px;
	margin-bottom: 20px;
}

.c_top_white {
	background: #fff !important;
	padding: 0px 20px;
}

ul.c_top_part {
	width: 100%;
	padding: 30px 0 15px 0px;
	border-bottom: 1px solid #e5e5e5;
}

ul.c_top_part li {
	float: left;
} 

ul.c_top_part li.c_p01 {
	text-align: left;
	font-size: 13px !important;
	color: #1078d1;
	padding: 6px 0 0 0px;
	width: 25%;
}

ul.c_top_part li.c_p02 {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	width: 50%;
}

ul.c_top_part li.c_p03 {
	text-align: right;
	padding-right: 0px;
	width: 25%;
}

.c_price_txt {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	width: 100%;
}

.c_btn_part_01 {
	background: #02a267;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 30px;
}

.c_btn_part_02 {
	background: #fff;
	color: #000;
	font-size: 12px;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 30px;
	border: 1px solid #d2d2d2;
}

.c_wood_img {
	width: 95% !important;
	height: auto !important;
	object-fit: contain !important;
}

.com_btn_zoom {
	/* top: 10px !important; */
}

.c_border_01 {
	border: 1px solid #e6e6e6 !important;
}

.c_pd_bottom {
	padding: 10px 20px 20px 20px !important;
}

.c_tab2_area {
	padding: 0 20px 80px 20px;
}

.c_new_make {
	display: flex;
	margin-bottom: 30px;
}

.youto__img {
	width: 100%;
}

.c_tab_txt_01 {
	font-size: 13px;
	font-weight: 400;
	padding-bottom: 15px;
}

.c_form_area {
	padding: 0 20px;
	margin-top: 10px;
}

.c_toggle_area {
	padding: 0 20px;
	border: 1px solid #ebebeb;
	margin: 20px 0px 0px 0px;
	border-radius: 10px;
	display: block;
	overflow: visible;
}

.c_color_area {
    margin: 0px 20px 10px 20px !important;
	display: grid;
}

.c_btn_under {
	padding: 0 20px;
} 


.ct_txt {
	font-size: 17px;
	font-weight: 600;
	line-height: 10px;
	padding: 0px !important;
}

.cd_area {
	display: flex;
	align-items: center;
	flex-wrap: nowrap; /* 줄바꿈 방지 */
	gap: 6px;
	padding-top: 10px;
}

.cd_area li {
	float: none;
	white-space: nowrap;
}

.cd_input {
	box-sizing: border-box !important;
    color: #222 !important;
    font-size: 14px !important;
    background: #fff !important;
    vertical-align: middle !important;
    height: 30px !important;
    border-radius: 6px !important;
    font-weight: 400 !important;
    border: solid 1px #e2e3e5 !important;
	width: 100px !important;
	text-align: center !important;
	margin-left: 10px;
	display: block;
	line-height: 27px;
}

.cd_input2 {
	box-sizing: border-box !important;
    color: #222 !important;
    font-size: 14px !important;
    background: #fff !important;
    vertical-align: middle !important;
    height: 30px !important;
    border-radius: 6px !important;
    font-weight: 400 !important;
    border: solid 1px #e2e3e5 !important;
	width: 70px !important;
	text-align: center !important;
	margin-left: 10px;
	display: block;
	line-height: 27px;
}

.cd_part_01 {
	font-size: 14px;
	font-weight: 600;
	line-height: 30px;
}

.cd_part_03 {
	font-size: 14px;
	font-weight: 600;
	line-height: 30px;
	margin-left: 45px;
}

.c_img_05 {
	width: 50%;
}

.cd_img_in {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.cd_img_area {
	width: 100%;
	display: inline-flex;
	margin: 50px 0 23px 0px;
}

.cd_under_txt {
	font-size: 16px;
	font-weight: 600;
	color: #c3c3c3;
	text-align: center;
	margin-bottom: 50px;
}

.ct_color {
	color: #1078d1;
}

.c_under_pt {
	padding-top: 30px !important;
    padding-bottom: 80px !important;
}

.c_progress {
	z-index: 70 !important;
} 


/*  버튼 드롭다운 CSS 01  */

.title {
  margin: 2rem auto;
  font-size: 2rem;
  text-align: center;
}

.faq-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 0 auto;
	padding-top: 10px;
	list-style: none;
	padding-bottom: 10px;
}

.faq {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq.active {
  box-shadow: none;
}

.faq__question {
  padding: 20px 20px 15px 0px;
}

.faq__title {
  margin: 0;
  font-size: 1.5rem;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq__text {
  padding: 0.5rem 1rem;
  color: gray;
  font-size: 1rem;
}

.faq.active .faq__answer {
  max-height: 1000px;
  border-top: 1px solid #e2e2e2;
  transition: max-height 0.3s ease-in-out;
}

.faq__btn {
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 11px;
  right: 1rem;
  border: 0;
  border-radius: 50%;
  font-size: 11px;
  background: #02a267;
  color: #fff;
}

.faq__btn:focus {
  outline: 0;
}

.faq__icon.close {
  display: none;
}

.faq.active .faq__icon.close {
  color: #fff;
  display: block;
}

.faq.active .faq__icon.open {
  display: none;
}

.wrap-vertical {
  width: 100%;
  padding: 15px 0 25px 0px;
  overflow-x: auto;
  overflow-y: hidden;
  color: #112031;
  background: #fff;
  border: 0px solid #000;
  /* white-space: nowrap; */
  margin-bottom: 40px;
  -webkit-overflow-scrolling: touch;
}

.wrap-vertical::-webkit-scrollbar {
  height: 12px;
}

.wrap-vertical::-webkit-scrollbar-track {
  background-color: #f3f3f3;

}

.wrap-vertical::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #cccccc;
}

.wrap-vertical::-webkit-scrollbar-button {
  width: 0;
}


/*  버튼 드롭다운 CSS 02  */

.title2 {
  margin: 2rem auto;
  font-size: 2rem;
  text-align: center;
}

.faq-container2 {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 0 auto;
	padding-top: 10px;
	list-style: none;
	padding-bottom: 10px;
}

.faq2 {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq2.active2 {
  box-shadow: none;
}

.faq__question2 {
  padding: 20px 20px 15px 0px;
}

.faq__title2 {
  margin: 0;
  font-size: 1.5rem;
}

.faq__answer2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq__text2 {
  padding: 0.5rem 1rem;
  color: gray;
  font-size: 1rem;
}

.faq2.active2 .faq__answer2 {
  max-height: 1000px;
  border-top: 1px solid #e2e2e2;
  transition: max-height 0.3s ease-in-out;
}

.faq__btn2 {
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 11px;
  right: 1rem;
  border: 0;
  border-radius: 50%;
  font-size: 11px;
  background: #02a267;
  color: #fff;
}

.faq__btn2:focus {
  outline: 0;
}

.faq__icon2.close2 {
  display: none;
}

.faq2.active2 .faq__icon2.close2 {
  color: #fff;
  display: block;
}

.faq2.active2 .faq__icon2.open2 {
  display: none;
}

.wrap-vertical2 {
  width: 100%;
  padding: 15px 0 25px 0px;
  overflow-x: scroll;
  color: #112031;
  background: #fff;
  border: 0px solid #000;
   /* 가로 스크롤 */
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 40px;
}

.wrap-vertical2::-webkit-scrollbar {
  height: 12px;
}

.wrap-vertical2::-webkit-scrollbar-track {
  background-color: #f3f3f3;

}

.wrap-vertical2::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #cccccc;
}

.wrap-vertical2::-webkit-scrollbar-button {
  width: 0;
}



/*  뉴 드롭 다운  */
details {
  /* border-bottom: solid #ADADAD 2px; */
}

details:first-of-type {
  /* border-top: solid #ADADAD 2px; */
}

details[open] {
  /* background-color: #eee; */
  /* border-left: 3px solid #0000CD; */
}

summary {
  display: flex;                 /* 🔥 핵심 */
  justify-content: space-between;/* 양쪽 끝 정렬 */
  align-items: center;           /* 세로 가운데 정렬 */

  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 10px;
}

summary .c_aa {
  display: flex;              /* 🔥 inline-block → flex */
  align-items: center;        /* 🔥 세로 가운데 */
  justify-content: center;    /* 가로 가운데 */

  padding: 8px;
  font-size: 20px;
  cursor: pointer;

  background: #02a267;
  border-radius: 30px;
}
.c_aa {
	background: #02a267;
	border-radius: 30px;
}

summary .c_aa::after {
  content: '';
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: block;             /* 🔥 inline-block → block */
  padding: 4px;

  transform: rotate(-135deg);
  transition: 0.3s;
}

details[open] >  summary .c_aa::after {
  transform: rotate(45deg);
}

.cs_box.empty {
  background: #f5f5f5;
}

summary .c_aa::-webkit-details-marker {
  display: none;
}

ul.sample_scroll_area {
	display: -webkit-inline-box;
	padding-bottom: 30px;
}

ul.sample_scroll_area li {
	float: left;
	margin-right: 15px;
}

ul.c_scroll_area {
	display: -webkit-inline-box;
}

ul.c_scroll_area li {
	float: left;
	margin-right: 15px;
}

ul.c_scroll_area_01 {
	display: -webkit-inline-box;
}

ul.c_scroll_area_01 li {
	float: left;
	margin-right: 15px;
}

ul.hand_scroll_area {
	display: -webkit-inline-box;
}

ul.hand_scroll_area li {
	float: left;
    margin-right: 15px;
    width: 30%;
}

ul.hand_scroll_area_01 {
	display: -webkit-inline-box;
}

ul.hand_scroll_area_01 li {
	float: left;
	margin-right: 15px;
}


ul.up_scroll_area {
	display: -webkit-inline-box;
}

ul.up_scroll_area li {
	float: left;
	margin-right: 15px;
	width: 30%;
}

ul.c_color_area {
	display: block; /* 변경 */
}

ul.up_color_area {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
}

ul.up_color_area li {
	float: none; /* 제거 */
	width: calc(25% - 10px); /* 4열 */
	margin-right: 0;
}

@media (max-width: 768px) {
	ul.up_color_area li {
		width: calc(50% - 10px); /* 모바일 2열 */
	}
}
ul.surap_scroll_area {
  display: flex;          /* 🔥 inline-box 제거 */
  overflow-x: auto;       /* 스크롤 */
  gap: 10px;
}

ul.surap_scroll_area li {
  flex: 0 0 40px;        /* 🔥 고정 크기 */
}

ul.surap_scroll_area_01 {
	display: -webkit-inline-box;
}

ul.surap_scroll_area_01 li {
	float: left;
	margin-right: 15px;
}

.sample_p01 {
	width: 40%;
}

.sample_p02 {
	width: 10%;
}

.c_arrow_img {
	width: 100%;
    margin: 0 auto;
    display: flex;
}

.sample_img {
	width: 100%;
    margin: 0 auto;
    display: flex;
}

.sample_txt {
	padding-bottom: 10px;
	padding-top: 20px;
}

.sample_radio {
	display: flex;
}

.sample_radio li {
	float: left;
	display: flex;
	width: 50%;
}

.c_sample_arrow {
	padding-top: 35px;
	display: inline-block;
}

.surap_img {
  width: 100%;
	height: 160px;
  overflow: hidden;
}
.surap_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 비율 유지하면서 채움 */
}
.cf_img {
	width: 50%;
    margin: 0 auto;
    display: flex;
}

.hand_img {
	width: 100%;
    margin: 0 auto;
    display: flex;
    aspect-ratio: 1 / 1;
}

.c_color_txt_02 {
	display: block;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	padding: 10px 0 10px 0px;
	color: #595959;
}

.c_scroll_txt {
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	padding: 10px 0 10px 0px;
}

.c_scroll_txt_01 {
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	padding: 10px 0 10px 0px;
}

.sample_box {
	display: block;
	border: 1px solid #e6e6e6;
	background: #fff;
	padding: 7px;
}

.surap_box {
	display: block;
	border: 3px solid #e6e6e6;
	background: #fff;
	padding: 7px;
}

.hand_box {
	display: block;
    border: 3px solid #ececec;
    background: #fff;
    padding: 7px;
    border-radius: 5px;
    transition: 0.2s;
}

/* hover */
@media (hover: hover) and (pointer: fine) {
  .hand_box:hover {
    border: 3px solid #02a267;
  }
}

/* 선택 상태 (핵심) */
.hand_scroll_area li.active .hand_box {
  border: 3px solid #02a267;
}

/* 기본 */
.up_box {
  display: block;
  border: 3px solid #ececec;
  background: #fff;
  padding: 7px;
  border-radius: 5px;
  transition: 0.2s;
}

/* hover */
@media (hover: hover) and (pointer: fine) {
  .up_box:hover {
    border: 3px solid #02a267;
  }
}

/* 선택(active) */
.up_box.active {
  border: 3px solid #02a267;
}

/* 선택 상태 (핵심) */
.up_scroll_area li.active .up_box {
  border: 3px solid #02a267;
}

.cs_box {
	display: block;
	border: 3px solid #e6e6e6;
	background: #f8f8f8;
	/* padding: 15px 0 10px 0px; */
}

.cs_box_01 {
  display: block;
  border: 3px solid #e6e6e6;
  background: #f8f8f8;
  padding: 15px 0 10px 0;
  transition: 0.2s;
}

/* hover 유지 */
@media (hover: hover) and (pointer: fine) {
  .cs_box_01:hover {
    border: 3px solid #02a267;
  }
}

/* 🔥 선택 상태 */
.c_scroll_area_01 li.active .cs_box_01 {
  border: 3px solid #02a267;
}

/* .cs_box_01:visited {
	display: block;
	border: 3px solid #02a267;
	background: #f8f8f8;
	padding: 15px 0 10px 0px;
} */

.cs_box_01:active {
	display: block;
	border: 3px solid #02a267;
	background: #f8f8f8;
	padding: 15px 0 10px 0px;
}

.cs_m_title {
	font-size: 17px;
	font-weight: 600;
	padding-bottom: 10px;
	display: inline-block;
}

.cs_top_title {
	border-bottom: 1px solid #dadada;
}


/* 텝 3개 */

ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.tabs li {
  background: none;
  color: #454545;
  display: inline-block;
  padding: 10px 0px;
  cursor: pointer;
  width: 32.5%;
  text-align: center;
  font-size: 13px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: #f2f2f2;
}

ul.tabs li.current {
  background: #b1b1b1;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.tab-content {
  display: none;  
  padding: 15px 0;
  border-top:1px solid #d1d1d1;
}

.tab-content.current {
  display: inherit;
}


/* 텝 4개 */

ul.tabs4 {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.tabs4 li {
  background: none;
  color: #454545;
  display: inline-block;
  padding: 10px 0px;
  cursor: pointer;
  width: 24%;
  text-align: center;
  font-size: 12px !important;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: #f2f2f2;
}

ul.tabs4 li.current4 {
  background: #b1b1b1;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.tab-content4 {
  display: none;
  padding: 15px 0;
  border-top:1px solid #d1d1d1;
}

.tab-content4.current4 {
  display: inherit;
}


.c_middle_btn_01 {
	display: inline-block;
	background: #a5a5a5;
	font-size: 14px;
	font-weight: 600;
	padding: 13px 0px;
	border-radius: 30px;
	color: #fff;
	width: 46%;
	margin: 0 5px;
}

.c_middle_btn_02 {
	display: inline-block;
	background: #3fa7f0;
	font-size: 14px;
	font-weight: 600;
	padding: 13px 0px;
	border-radius: 30px;
	color: #fff;
	width: 46%;
	margin: 0 5px;
}

.c_middle_btn_area {
	padding: 30px 20px 30px 20px;
	text-align: center;
}

.c_mt_select {
	margin-top: 80px;
    display: inherit;
}

.c_count_num {
	background: #f0f0f0;
	color: #949494 !important;
	padding: 3px 3px;
	color: #000;
	font-size: 16px;
	font-weight: 600;
}

ul.c_count_area {
	width: 100%;
	border: 1px solid #dadada;
	display: flex;
	border-radius: 3px;
	margin-top: 6px;
}

ul.c_count_area li {
	float: left;
	width: 33%;
	margin-right: 0px !important;
	text-align: center;
}

.c_count_middle {
	font-size: 13px;
	line-height: 24px;
	font-weight: 500;
}



/*  라이오버튼 CSS  */

.checks {position: relative;}
.checks input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip:rect(0,0,0,0);
  border: 0;
}
.checks input[type="radio"] + label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.checks input[type="radio"] + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  width: 21px;
  height: 21px;
  text-align: center;
  background: #fafafa;
  border: 1px solid #cacece;
  border-radius: 100%;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
}
.checks input[type="radio"] + label:active:before,
.checks input[type="radio"]:checked + label:active:before  {
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
.checks input[type="radio"]:checked + label:before {
  background: #E9ECEE;
  border-color: #adb8c0;
}
.checks input[type="radio"]:checked + label:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 13px;
  height: 13px;
  background: #99a1a7;
  border-radius: 100%;
  box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
}

/* radio size */
.checks.small input[type="radio"] + label {
  font-size: 12px;
  padding-left: 25px;
}
.checks.small input[type="radio"] + label:before {
	top: -2px;
  width: 17px;
  height: 17px;
}
.checks.small input[type="radio"]:checked + label:after {
	top: 2px;
  width: 9px;
  height: 9px;
}

.sam_txt {
	font-size: 14px !important;
}

.check_color {
	height: 20px;
	border-radius: 3px;
	border: 1px solid #eaeaea;
}

.check_color_01 {
	background: #fff;
	height: 20px;
	border-radius: 3px;
	border: 1px solid #eaeaea;
}

.check_color_02 {
	background: #2f90e8;
	height: 20px;
	border-radius: 3px;
}

.check_color_03 {
	background: #92d050;
	height: 20px;
	border-radius: 3px;
}

.check_color_04 {
	background: #bababa;
	height: 20px;
	border-radius: 3px;
}

.c_color_txt {
	font-size: 16px;
	font-weight: 600;
	padding: 0 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.c_ston_txt {
	font-size: 16px;
	font-weight: 600;
	padding: 0 20px;
	margin-top: 35px;
	margin-bottom: 20px;
}




/*   테이블 CSS   */

.c_price_table {
	padding: 0 20px;
	margin-top: 20px;
}

.c_price_table_01 {
	padding: 0 20px;
	margin-top: 40px;
}

.c_price_txt_02 {
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	width: 100%;
	background: #369df5;
	color: #fff;
	padding: 10px 0px;
}

table.c_price_all {
	font-size: 11px;
}

table.c_price_all td {
	border-bottom: 1px solid #e7e7e7;
	padding: 10px 0 10px 10px;
	
}

table.c_price_all th {
	text-align: center;
	background: #eaeaea;
	padding: 10px 0px;
	font-size: 12px;
	font-weight: 500;
}

.cp_bold {
	text-align: right !important;
	padding-right: 7px !important;
}

.cp_bold_price {
	font-weight: 600;
	font-size: 12px;
}

.cp_bold_price_all {
	font-weight: 600;
	font-size: 13px;
	color: #00884d;
}

.c_order_btn {
	padding: 20px 20px;
	padding-bottom: 70px;
	
}

.cp_mt {
	margin-top: 30px !important;
}

.c_price_right {
	text-align: right !important;
	padding-right: 8px !important;
}

.c_price_left {
	text-align: left !important;
	padding-left: 10px !important;
}

.compleat_img {
	width: 12%;
}

.c_com_img {
	display: block;
	text-align: center;
}

.c_com_txt {
	text-align: center;
	display: block;
	font-size: 20px;
	padding-top: 20px;
	line-height: 30px;
	font-weight: 500;
}

.c_com_area {
	margin: 80px 0 50px 0px;
}

.c_plan_btn_arrow {
	background: #d0d0d0;
	padding: 6px 8px;
	border-radius: 30px;
	font-size: 12px;
	color: #fff;
}

.c_plan_btn li {
	float: left;
}

.c_plan_btn_um {
	font-size: 18px;
	font-weight: 600;
	color: #1c8cec;
	text-align: center;
	padding: 0 10px;
}

.c_plan_area {
	padding: 0 20px;
	display: flex;
	margin-top: 30px;
}

.c_plan_btn {
	margin-right: 30px;
}

.c_plan_btn_02 {
	margin-right: 30px;
}

.c_plan_btn_02 li {
	float: left;
}

.c_plan_txt {
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	padding: 0 0 0 20px;
	margin-top: 20px;
}

.c_plan_txt_01 {
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	padding: 0 0 0 20px;
	margin-top: 40px;
}

.c_my_txt {
	text-align: left;
	font-size: 17px;
	font-weight: 600;
	padding: 0 0 10px 0px;
	border-bottom: 1px solid #eaeaea;
}

/*  켈린더 CSS  */

table.c_sch_box , table.c_sch_box th, table.c_sch_box td {
    border: 1px solid #dedede;
	text-align: center;
	width: 100%;
}

table.c_sch_box {
    border-collapse: collapse;
}

table.c_sch_box tr {
    height: 60px;
    vertical-align: middle;
}

table.c_sch_box td {
    width: 14% !important;
    padding: 5px;
}

.bar-container {
    width: 630px;
    height: 4px;
    margin-top: -8px;
    margin-bottom: 16px;
    background-color: #e7e7e7;
}

.bar-contents {
    width: 116px;
    height: 100%;
    background-color: #bbc6b6;
}

#date {
    margin-top: 10px;
    margin-left: 210px;
    font-size: 14px;
    display: flex;
    list-style-type: none;
}

#sched_tbl {
    margin-top: 15px;
    border-top: 0px solid #aaaaaa;
	font-size: 13px;
	color: #787878;
}

#day {
    background-color: #f1f1f1;
    font-weight: bold;
    text-align: center;
}

.red {
    color: #de4426;
}

.blue {
    color: #2da109;
}

.c_date_pick {
	color: #1c8cec !important;
	font-weight: 600;
}

.c_sch_area {
	padding: 0 20px;
  height:410px;
}

.c_plan_impor {
	padding: 0 20px;
}

.c_plan_a01 {
	padding-top: 10px;
}

.c_plan_a01 li {
	padding: 15px 0 15px 15px;
	background: #f4f4f4;
	border-bottom: 2px solid #fff;
}



/*  체크박스  */

/* input 초기화 */
input.c_plan[type='checkbox']{
  display: none;
}
/* (체크박스, 텍스트) 정렬 맞추기 */
.checkbox_label{
  display: flex;
  align-items: center;
}

/* 체크박스 디자인 */
.checkbox_icon::before{
  content:'';
  display: block;
  margin-right: 5px;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid #9da3a5;
  box-sizing:border-box;
  position: relative;
  cursor: pointer;
}

/* checked */
.checkbox_label input.c_plan:checked + .checkbox_icon::before{
/*   transition: all 0.15s ease; */
  background: url(https://intranet.adef.co.kr/asset/images/ic_check.png) #2aa0ff
    no-repeat center;;
  border:none;
}

.c_plan_part_01 {
	display: inline-block;
}

.c_plan_part_02 {
	display: inline-block;
	float: right;
	padding-right: 20px;
	font-size: 13px;
	font-weight: 400;
}

.com_btn_plan.m_plan {
    height: 44px;
    font-size: 14px;
    font-weight: 600;
}

.com_btn_plan.line_plan {
    border: solid 1px;
}

.c_point_plan {
    border-color: #02A267 !important;
    background-color: #E2F1E9;
    color: #02A267;
    /* box-shadow: 0px 4px 4px 0px rgba(18, 133, 67, 0.3); */
    width: 35%;
}

.com_btn_plan {
    padding: 0 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: normal;
    box-sizing: border-box;
    gap: 6px;
    word-break: keep-all;
    line-height: initial;
    line-height: 1;
}

.c_pd_05_plan {
    padding-bottom: 7px;
}

.com_flex_row_plan {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    gap: 5px;
}

.c_plan_address {
	padding: 0 20px;
	margin-top: 10px;
}

.c_mt_03 {
	margin-top: 40px;
}

.c_plan_products {
	margin: 10px 20px;
	background: #f4f4f4;
	padding: 15px 0 15px 15px;
}

.c_products_txt_01 {
	display: inline-block;
}

.c_products_txt_02 {
	display: inline-block;
	float: right;
}

.c_products_point {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
}

.c_products_line {
	padding-right: 15px;
}

.c_plan_total {
	margin: 0px 20px;
	background: #fff;
	padding: 10px 0 10px 15px;
}

.c_total_txt_01 {
	display: inline-block;
}

.c_total_txt_02 {
	display: inline-block;
	float: right;
}

.c_total_point {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
}

.c_total_line {
	padding-right: 15px;
}

.c_plan_delivery {
	margin: 10px 20px;
	background: #f4f4f4;
	padding: 15px 0 15px 15px;
}

.c_delivery_txt_01 {
	display: inline-block;
}

.c_delivery_txt_02 {
	display: inline-block;
	float: right;
}

.c_delivery_point {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #00884d;
}

.c_delivery_line {
	padding-right: 15px;
}

.c_pt_20 {
	padding-top: 20px;
}  

.c_pt_10 {
	padding-top: 10px;
}

.c_plan_card {
	padding: 0 20px;
	display: flex;
	margin-top: 10px;
}

.c_plan_card li {
	float: left;
	width: 30%;
	border: 1px solid #e7e7e7;
	border-radius: 7px;
	margin-right: 15px;
	padding: 15px 0 15px 15px;
}

.c_pend {
	margin-right: 0px !important;
}

.kpay_img {
	width: 80%;
}

.c_circle input[type="radio"] + label:before {
    top: 1px !important;
}

.c_plan_email {
	margin: 0px 0px;
	background: #fff;
	padding: 15px 20px 20px 20px;
}





/*  마이페이지 텝 영역  */

div#tabwrap{
    background: #F2EDD7;
    border-radius: 30px;
    width: 100%;
    transform: translate(-50%, -50%);
    padding: 25px;
	display: contents;
}

.menu1{margin-right: 10px;}
.menu1, .menu2{
    position: relative;
    background: #fff;
    border: none;
    outline: 0;
    width: 48%;
    height: 50px;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    color: #393e46;
    font-weight: 600;
    font-size: 15px;
	border: 1px solid #8b8b8b;
}

.menu1.on, .menu1:hover{
    background: #8b8b8b;
    color: #fff;
}
.menu2.on, .menu2:hover{
    background: #8b8b8b;
    color: #fff;
}

.board1, .board2{
    display: none;
    margin-top: 20px;
    padding: 0px;
    border-radius: 25px;
}

.menu1.on ~ .board1{display: block;}
.menu2.on ~ .board2{display: block;}

.board1{background: #fff; color: #000;}
.board2{background: #fff; color: #000;}


.c_my_tab {
	padding: 0 20px;
	margin-top: 10px;
}

.cw_50 {
	width: 50% !important;
    margin: 0 auto;
	background: #999999 !important;
	box-shadow: none !important;
	margin-top: 30px;
}

.my_manber_area {
	gap: 20px !important;
	display: flex !important;
	margin-top: 30px;
}

.my_field_add {
	color: #B7B7B7 !important;
    font-size: 14px !important;
	width: 90px !important;
}

.my_line_01 {
	border-top: 1px solid #eaeaea;
	margin: 20px 20px !important;
}





/*  결제내역조회  */

div#calAndTable {
  display: flex;
  margin: 0 auto;
}

div#calWrapper {
  width: 600px;
  height: 700px;
  border: 1px solid black;
  margin: 0 auto;
}

div#upper_menu {
  width: 100%;
  height: 50px;
  border-bottom: 0px solid black;
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;
}

div#period {
  border: 1px solid black;
  width: 100px;
  height: 25px;
  text-align: right;
  background-color: rgb(223, 219, 219);
  margin-top: 12.5px;
}

input[type="date"] {
  width: 45%;
  height: 45px;
  margin-top: 12.5px;
}

div#betweenDate {
  margin-top: 12.5px;
}

button#searchButton {
  width: 70px;
  height: 25px;
  font-size: 1.1rem;
  margin-top: 12.5px;
}

div#dateTitle {
  font-size: 1.5rem;
  font-weight: 550;
  text-align: center;
  margin-top: 20px;
}

div#betweenDate {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 18px;
}

div#calendar {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 20px;
}

div#pnButtonWrapper {
  width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

div#pnButtonWrapper button {
  width: 70px;
  height: 30px;
}

div#selectedDateWrapper {
  text-align: center;
}

div#submitButtonWrapper {
  display: flex;
  flex-direction: row-reverse;
}

button#submit {
  width: 80px;
  height: 40px;
  font-size: 1.3rem;
  font-weight: 550;
  margin-right: 50px;
  margin-top: 20px;
}

td.sun {
  color: red;
}

td.sat {
  color: blue;
}

table {
  width: 100%;
  text-align: center;
}


div#tableWrapper {
  margin: 0 auto;
  width:400px;
  height:700px;
  overflow: auto;
}

div.table {
  display: flex;
}

div.table div {
  width: calc(100% / 3);
  height:30px;
  line-height: 30px;
  text-align: center;
  border-bottom: 3px solid white;
}

div.table div:nth-child(2) {
  border-left: 3px solid white;
  border-right: 3px solid white;
}

div.table:nth-child(2n) div {
  background-color: rgb(159, 206, 206);
}

div.table:nth-child(2n+1) div {
  background-color: rgb(228, 240, 240);
}

div.table:first-child div {
  background-color: rgb(66, 139, 168);
  color: white;
  font-weight: 550;
}

div.table:first-child div{
  height:50px;
  line-height: 50px;
  font-size: 1.1rem;
}


div#iconWrapper {
  width:200px;
  margin: 0 auto;
  margin-bottom: 20px;
}





.c_date_btn {
	background: #bababa;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	width: 100%;
	text-align: center;
	display: block;
	margin-top: 30px;
	padding: 15px 0px;
	border-radius: 8px;
}

.cb_price_box {
	margin-top: 30px;
	background: #f4f4f4;
}

.cb_price_list {
	display: block;
	border-bottom: 1px solid #f0f0f0;
	padding: 15px 15px;
	font-size: 15px;
	color: #008554;
	margin-bottom: 30px;
}

.cb_price_01 {
	display: inline-block;
	font-size: 14px;
	padding: 15px 15px;
}

.cb_price_02 {
	display: inline-block;
	float: right;
	font-size: 12px;
	background: #fff;
	padding: 5px 10px;
	border-radius: 20px;
	margin-top: 12px;
	margin-right: 10px;
}

.cb_point {
	color: #008554;
}

.c_date_area {
	padding-bottom: 15px;
}

.cmt_01 {
	padding-top: 10px;
	padding-bottom: 70px;
}

.cmt_02 {
	margin-top: 0px !important;
}

.cmt_03 {
	margin-bottom: 25px;
}

.c_my_btn {
	background: #999999;
	padding: 12px 0px;
	border-radius: 50px;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	margin: 50px 10px 0px 0px;
	width: 50%;
}

.c_my_save {
	background: #02a267;
	padding: 12px 0px;
	border-radius: 50px;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	margin: 50px 0px 0px 10px;
	width: 50%;
}

.c_my_back {
	text-align: center;
	border-top: 1px solid #eaeaea;
	margin: 30px 20px 0 20px;
	display: flex;
	padding-bottom: 60px;
}

.c_none {
	border-top: none !important;
}

.c_price_txt_point {
	color: #008d59;
}

table.cp_impor {
  width: 100%;
  border-collapse: collapse;
  font-weight: bold;
  margin-top:30px;
}

table.cp_impor td.cp_point {
	width: 50px;
	border-top: 1px solid #d0d0d0;
	border-bottom: 1px solid #d0d0d0;
	background: #e8e8e8;
	text-align: center;
}

table.cp_impor td.cp_text {
	width: 136px;
	background: #fff;
	border-top: 1px solid #d0d0d0;
	border-bottom: 1px solid #d0d0d0;
	text-align: left;
	padding: 15px 10px;
}

.flag {
	width: 20%;
	margin-left: 10px;
}

.pt_flag {
	display: inline-block;
	padding-left: 5px;
}

.c_step_area {
	background: none !important;
	margin: 0 auto;
	padding-top: 7px;
}

.c_btn_step_area {
	display: grid;
	z-index: 200;
  background: #edf3f1;
}

.c_m_title {
	display: block;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 15px;
}
@media (max-width: 768px){
  .c_m_title{
    display: none;
  }
}
.c_bar {
	border-color: #e0eae3 !important;
}

.c_step_title {
	font-size: 13px;
	font-weight: 500;
}

.c_t_point {
	color: #1078d1;
}

.c_ct_box {
    margin-top: 1px;
    z-index: 300;
	text-align: center;
}

.com_progress {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
}
@media (max-width: 768px){
  .com_progress{
    margin-top: 5px; /* 원하는 값으로 조절 */
  }
}
.com_progress__wrap {
  padding: 20px 25px;
  background-color: #edf3f1;
  border-bottom: 1px solid #D0E0D4;
  margin-top:-10px;
}
.com_progress .step {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  color: #B7B7B7;
  font-weight: 700;
  line-height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  border: 2px solid #D0E0D4;
  background-color: #fff;
  z-index: 1;
}
.com_progress .step.active {
  font-size: 0;
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/step_on.png);
  width: 30px;
  min-width: 30px;
  height: 30px;
  border: none;
}
.com_progress::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  border-top: 2px solid #D0E0D4; /* 전체 회색 */
}

.com_progress .bar {
  position: absolute;
  top: 80%;
  left: 0;
  border-top: 2px solid #02A267; /* 진행 초록 */
  border-color: #02A267!important;
  width: 0;
}

.p_product_select .com_center_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 20px;
  min-height: calc(var(--vh, 1vh) * 100 - 130px);
}
.p_product_select .btn_chk {
  position: relative;
  cursor: pointer;
}
.p_product_select .btn_chk .img_box::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  border: 2px solid #02A267;
  opacity: 0;
  border-radius: 5px;
  background-color: rgba(2, 162, 103, 0.2);
}
.p_product_select .btn_chk .icon_chk_l {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.p_product_select .btn_chk input[type=radio]:checked + .img_box:after {
  opacity: 1;
}
.p_product_select .btn_chk input[type=radio]:checked + .img_box .icon_chk_l {
  opacity: 1;
}
.p_product_select .product_link {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  padding: 17px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 30px;
}
.p_product_select .product_link__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.p_product_select .product_link .tit {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}
.p_product_select .product_link .img_box img {
  width: 105px;
  min-width: 105px;
  height: auto;
}
.p_product_select .product_link .svg_icon {
  margin-left: auto;
}
.p_product_select .product_link:after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  border: 2px solid #02A267;
  opacity: 0;
  border-radius: 5px;
  background-color: rgba(2, 162, 103, 0.2);
}
.p_product_select .product_link.active:after {
  opacity: 1;
}
.p_product_select .toogle_container {
  border-radius: 10px;
}
.p_product_select .toogle_container .btn_toggle {
  width: 100%;
}
.p_product_select .toogle_container .btn_toggle .svg_icon {
  transform: rotate(90deg);
}
.p_product_select .toogle_container.active {
  border: 2px solid #02A267;
}
.p_product_select .toogle_container.active .btn_toggle .svg_icon {
  transform: rotate(-90deg);
}
.p_product_select .toogle_container.active .toggle_body {
  display: flex;
}
.p_product_select .toogle_container .toggle_body {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 15px;
  display: none;
}
.p_product_select .toogle_container .toggle_body .item_wrap.cols_2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 10px;
  width: 100%;
}
.p_product_select .toogle_container .toggle_body .item_wrap.cols_2 > * {
  width: calc((100% - 10px * 1) / 2);
  min-width: calc((100% - 10px * 1) / 2);
}
.p_product_select .toogle_container .toggle_body .item_wrap.cols_3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 10px;
  width: 100%;
}
.p_product_select .toogle_container .toggle_body .item_wrap.cols_3 > * {
  width: calc((100% - 10px * 2) / 3);
  min-width: calc((100% - 10px * 2) / 3);
}
.p_product_select .toogle_container .toggle_body .item .txt {
  text-align: center;
  font-size: 13px;
  margin-bottom: 5px;
}
.p_product_select .toogle_container .info_txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  height: 32px;
  background-color: #d0e0d4;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #02A267;
}
.p_product_select .com_btn_wrap {
  margin-top: auto;
  padding-bottom: 70px;
}

.c_tab_area {
	display: block !important;
    margin: 0 auto !important;
	width: 100%;
	text-align: center;
	padding-top: 30px !important;
}

.c_tit {
	text-align: center !important;
	font-size: 15px !important;
	border: 1px solid #dbdbdb;
	display: inline-block;
	border-radius: 20px;
	padding: 10px 40px;
	margin: 10px 0 15px 0px;
}

.c_tab_img {
	width: 90px !important;
	height: 90px !important;
}

.c_tit_01 {
	margin: 15px 0 !important;
	display: inline-flex !important;
	align-items: center;   
	justify-content: center;
	text-align: center !important;
	font-size: 15px !important;
	border: 1px solid #dbdbdb;
	border-radius: 20px;
	padding: 7px 40px;
	line-height: normal;
}
.c_tab_arrow {
	display: inline-flex;
	align-items: center;
	padding-left: 10px;
}
.c_step_area {
	background: none !important;
	margin: 0 auto;
	padding-top: 7px;
}

.c_btn_step_area {
	display: grid;
	z-index: 200;
    background: #edf3f1;
}

.k_arrow_02 {
  width: 20px !important;
  height: 9px !important;
}