:root {
	
	--bg-lightest: #F9FAF7;
	--bg-lighter: #F0F2EB;
	--bg-lighter: ECEEE5;
	--bg-light: #E1E5D6;
	
	--surface: #F2F6E7;
	--primary-50: #EDF5CE;
	--primary-100: #CEE389;
	--primary-200: #A9BE67;
	--primary-300: #899760;
	--primary-400: #637925;

	--main-light: #637925;
	--main: #425900;
	--main-dark: 2F4600;
	--main-dark: #293800;

	--title : #192100;
	--black : #333;
	--body : #595959;
	--grey : #767676;
	--grey-light : #949494;
	--grey-lighter : #aaa;
	--grey-lightest : #b9b9b9;

	--line: #dbdbdb;
	--border01: #e0e0e0;
	--border02: #eee;
	--grey-bg: #f7f7f7;
	
	--gradient01: #346D1F;
	--gradient02: #08803F;
	--gradient03: #009465;
	--gradient04: #00A790;
	--gradient05: #00B9BE;
	
	--point: #93B82B;
	--point01: #386C5F;
	
	--highlight: #D1F960;
	--link: #00A8FF;
	
	--shadow-in : inset 0 0.25rem 0.25rem rgba(0,0,0,0.2);
	--shadow-sm:  0 0.25rem 0.5rem rgba(0,0,0,0.05);
	--shadow-md:  0 0.5rem 1rem rgba(0,0,0,0.05);
	--shadow-lg:  0 0.75rem 1.5rem rgba(0,0,0,0.05);
	--shadow-xl:  0 1rem 3rem rgba(0,0,0,0.175);
}


.drop{
	border-color: #1c92eb;
	background-color: #1c92eb;
	color: #fff;
	border-radius: 10px 80px 80px 80px;
	cursor: pointer;
}
/* bg_img */
.bg_img_wrap{
  overflow: hidden;
}
.bg_img_wrap img{
  width: 100%;
  height: 0;
  padding-top: 64.9%;
  border: 1px solid #ddd;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(/images/snbr/photo.png);
}
.img_wrap {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.img_wrap img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* transition: all 0.2s linear; */
}
/* .img_wrap img:hover {
  transform: scale(1.1);
} */

.thumb {
  position: relative;
  display: block;
  overflow: hidden;
}
.thumb:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  background-color: #000;
  background-color: rgba(0,0,0,0.6);
  background-size: cover;
  background-position: center bottom;
  transition: all .2s ease;
  opacity: 0;
}
.thumb:after {
  content: "크게보기";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;  
  font-size: 1.25em;
  font-weight: bold;
  z-index: 1;
  transition: all .2s ease;
  opacity: 0;
}
.thumb:hover:before,
.thumb:hover:after{
  opacity: 1;
}
.thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .2s ease;
}
.thumb:hover img{
  transform: scale(1.1);
}

.img_box{
  overflow: hidden;
}
.img_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* tab */
.tab_layout .tab_menu, .tab_layout .tab_menu > ul{ display: flex; }
.tab_layout .tab_menu li{ cursor: pointer;}
.tab_layout .tab_menu li a{ display: block; }
.tab_layout .tab_menu .on_tab{ font-weight: bold; }
.tab_layout .tab_contents .tab_cont{ display: none; }
.tab_layout .tab_contents .tab_cont.on_tab{ display: block; }

.tab_layout.type01{}
.tab_layout.type01 .tab_menu li{
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 1px solid #eee;
    border-bottom: 1px solid #425900;    
}
.tab_layout.type01 .tab_menu li.on_tab{
	color: #425900;
	border-top: 3px solid #425900;
    border-right: 1px solid #425900;
    border-left: 1px solid #425900;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;    
}

/* modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #292a2b;
  z-index: 1;
  opacity: 0.4;
}
.modal-dialog {
  position: relative;
  width: 60%;
  height: 80%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
  box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
  padding: 32px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 80px;
  z-index: 2;
}
.modal-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  text-align: right;
}
.modal-header .modal-close{
  padding: 24px;
}
.modal-header .modal-close img{
  transition: all .2s ease;
  opacity: 0.8;	
	width: 40px;
}
.modal-header .modal-close:hover img{
  opacity: 1;	
}
.modal-body{
  overflow-y: auto;
  height: 100%;
}
.modal-content{
  padding: 0 8px 20px;
}

.photo_layer{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: none;	
}
.photo_layer .dimmed {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}
.photo_layer .layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48%;
    background: #fff;
    padding: 20px 24px;
    border-radius: 8px;
}
.photo_layer .btn_close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #425900;
    background: #E1E5D6;
    font-family: 'TmoneyRoundWindExtraBold';
    font-size: 1.2em;
}
.photo_layer .img_wrap{
    padding-top: 80%;
}
.photo_layer .img_wrap img:hover {
    transform: scale(1);
}
.photo_layer .title{
    font-family: 'TmoneyRoundWindExtraBold';
    color: #333;
    font-size: 1.75em;
    padding: 12px 0 20px 0;	
    text-align: center;
}
.photo_layer .img_box{
    border-radius: 8px
}

.divider{
	position: relative;
	padding-right: 12px;
	margin-right: 12px;
}
.divider:after {
	content: "";
	display: block;
	position: absolute;
	width: 2px;
	height: 12px;
	right: -1px;
	top: calc(50% - 5px);
	background: #fff;
	opacity: 50%;
}
.divider_list{
  display: flex;
  align-items: center;
}
.divider_list li{
  position: relative;
  display: inline-block;
  padding: 0 12px;
}
.divider_list li:before{
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  background:#eee;
}
.divider_list li:last-child:before{
  display: none;
}


/* list style */
.bu_list > li {
  margin: 8px 0;
  padding-left: 12px;
  position: relative;
  text-align: left;
  line-height: 1.5em;
}
.bu_list > li:before {
  content: "";
  display: block;
  background: #425900;
  width: 4px;
  height: 4px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: calc(50% - 2px);
  top: 0.65em;
}
.bu_list.grey > li:before {
  background: #AAAAC4;
  background: #8F90A6;
}

.dot_list{
	position: relative;
}
.dot_list:before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #425900;
    position: absolute;
    top: calc(50% - 6px);
    top: 7px;
    left: 0;
}

.sq_list > li {
	padding-left: 16px;
	position: relative;
	word-break: keep-all;
}
.sq_list > li:before {
	width: 4px;
	height: 4px;
	border-radius: 1px;
	background: #425900;
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
}

.num_list {counter-reset:rank}
.num_list > li {
	position:relative;
  text-align: left;
	margin-bottom: 12px;
	padding-left: 32px;
}
.num_list > li:before {
	content:counter(rank);
	counter-increment:rank;

	font-size: .8em;
	display:block;
	text-align: center;
	position:absolute;
	left: 0;
	width: 24px;
	height: 24px;
	line-height: 24px;
	top: calc(50% - 12px);
}
.num_list.type01 > li:before {
	border-radius: 4px;
	top: 0;
	font-weight: bold;
	line-height: 22px;
	background: rgb(121 160 11 / 12%);
	border: 1px solid #79A00B;
	color: #79A00B;
}

.num_list.type02 > li {
	padding:16px 12px 16px 32px;
	border-bottom:1px solid #D8E5FE;
  line-height: 1.6em;
	margin-bottom: 0;
}
.num_list.type02 > li:last-child {border-bottom:0}
.num_list.type02 > li:before {
	color:#6698FA;
	text-align:center;
	top:18px;
	font-size: 1em;
}
.num_list.type02 > li strong{
	display: block;
	margin-bottom: 4px;
	font-size: 1.05em;
}

.ico_list > li {
	margin: 12px 0;
  position: relative;
	background: url(/images/snbr/sparkle.svg) no-repeat 0 0.3em;
	background-size: 1em;
	padding-left: 1.4em;
	line-height: 1.6em;
}


/* Form Styles */
input,
input[type=text], 
input[type=password], 
input[type=email], 
input[type=url], 
input[type=search], 
input[type=tel], 
input[type=number], 
input[type=datetime],
select,
textarea{
	border: 1px solid var(--line);
  border: 1px solid #DBDBDB;
  background: #fff;
  border-radius: 4px;
  color:#595959;
}
input[type=text]:focus, 
input[type=password]:focus, 
input[type=email]:focus, 
input[type=url]:focus, 
input[type=search]:focus, 
input[type=tel]:focus, 
input[type=number]:focus, 
input[type=datetime]:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--main);
  outline: 1px solid #425900;
}
input::placeholder,
input:-ms-input-placeholder,
input::-webkit-input-placeholder,
input::-moz-placeholde,
input::-o-placeholder,
textarea::placeholder,
textarea::-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea::-o-placeholder {
	color:#949494;
	letter-spacing: -0.5px;
}
input:disabled,
input:read-only,
input[read-only], 
select[disabled="disabled"],
textarea[disabled="disabled"],
textarea:read-only {
	background-color:#f7f7f7;
	background-color: #eee;
	border: 1px solid #eee;
	/* 네이티브 외형 감추기 */
	-webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none;
}

input:not(#popup_ok,#popup_cancel){
	padding: 0 20px;
	line-height: 46px;
}

select{
	background:url(/images/snbr/select_down.svg) no-repeat right 12px center #fff;
	padding: 0 calc(12px + 12px + 12px) 0 20px;
	line-height:46px;
}
select option[value="default"]{
	display: none;
}
.select_bar{
	padding: 0 36px 0 12px;
	border: 0;
	border-radius: 0;
	border-bottom: 2px solid #DBDBDB;
	line-height: 38px;
	cursor: pointer;
	background-color: transparent;
}
.select_bar:focus{
	outline: 0;
}

textarea {
  padding:12px;
  color:#595959;
}
.textarea_box{
	position: relative;
	border-radius: 4px;
	border: 1px solid #DBDBDB;
	padding: 12px;
}
.textarea_box:focus-within {
	border: 1px solid #425900;
}
.textarea_box textarea{
	border: 0;
  width: 100%;
  padding: 0 20px 0 0;
	resize: none;
}
.textarea_box textarea:focus {
	outline: 0;
}

/* Select Control - checkbox, radio, chips*/
input[type="checkbox"].checkbox{
	display: none;
}
input[type="checkbox"].checkbox + label{
	transition: all .2s;
  cursor: pointer;
	width: 20px;
	height: 20px;
	display: inline-block;
	border-radius: 4px;
	background: url("/images/snbr/ulsansilver/check001.svg") no-repeat center center;
	border: 2px solid #bebebe;
	background-color: #fff;
	background-size: 10px;
}
input[type="checkbox"]:checked.checkbox + label {
	background-color: #179757;
	border-color: #179757;
}

.custom_checkbox input[type="checkbox"] {
  display: none;
  position: absolute;
  top: -10px;
  right: -10px;
}
.custom_checkbox label {
  width: 24px;
  height: 24px;
  cursor: pointer;
	position: relative;
	padding-left: calc(24px + 8px);
}
.custom_checkbox label::before {
  content: url("/images/snbr/ulsansilver/icon_custom_checkbox.svg");
	position: absolute;
	left: 0;
}
.custom_checkbox input[type="checkbox"]:checked+label::before {
  content: url("/images/snbr/icon_custom_checkbox_checked.svg");
	position: absolute;
	left: 0;
	z-index: 88;
}
.custom_checkbox.type01 label {
	width: 20px;
	height: 20px;
	padding-left: calc(20px + 8px);
	margin-right: 20px;
}
.custom_checkbox.type01 label::before {
  content: url("/images/snbr/ulsansilver/checkbox.svg");
	top: 0;
}
.custom_checkbox.type01 input[type="checkbox"]:checked+label::before {
  content: url("/images/snbr/ulsansilver/checkbox_on.svg");
}

.custom_radio {
  display: flex;
  align-items: center;
}
.custom_radio input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: -20px;
  z-index: -1;
	display: none;
}
.custom_radio input[type="radio"]+label {
  position: relative;
  margin-right: 20px;
  cursor: pointer;
}
.custom_radio input[type="radio"]+label::before {
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	background: #fff;
	border: 6px solid #dbdbdb;
	border-radius: 50%;
	z-index: 2;
	vertical-align: -4px;
	margin-right: 8px;
	transition: all .2s ease;
}
.custom_radio input[type="radio"]:checked+label::before {
	background: #ffffff;
	border-color: #425900;
}

<!-- 개인정보 취급 방침 추가-->
td.custom_radio-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

div.custom-radio-buttons {
  display: flex;
  align-items: center;
  justify-content: center; /* Add this to horizontally center the items */
  text-align: center;
  margin-top: 10px; /* Adjust this margin as needed */
}

div.custom-radio-buttons input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: -20px;
  z-index: -1;
  display: none;
}

div.custom-radio-buttons input[type="radio"]+label {
  position: relative;
  margin-right: 20px;
  cursor: pointer;
}

div.custom-radio-buttons input[type="radio"]+label::before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  background: #fff;
  border: 6px solid #dbdbdb;
  border-radius: 50%;
  z-index: 2;
  vertical-align: -4px;
  margin-right: 8px;
  transition: all .2s ease;
}

div.custom-radio-buttons input[type="radio"]:checked+label::before {
  background: #ffffff;
  border-color: #425900;
}


<!-- 개인정보 취급 방침 추가-->

input[type="radio"].radio {
	display: none;
}
input[type="radio"].radio+label {
  position: relative;
  cursor: pointer;
	display: block;
}
input[type="radio"].radio+label::before {
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	background: #fff;
	border: 4px solid #dbdbdb;
	border-radius: 50%;
	z-index: 2;
	vertical-align: -4px;
	margin-right: 8px;
	transition: all .2s ease;
}
input[type="radio"].radio+label::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%) scale(0);
	width: 10px;
	height: 10px;
	background-color: #fff;
	border-radius: 50%;
	transition: all .2s ease;
}
input[type="radio"].radio:checked+label::before {
	background: #ffffff;
	border-color: #425900;
}
input[type="radio"].radio:checked+label::after {
  transform: translateY(-50%) scale(1);
}

.radio_btn_wrap input[type="radio"].radio_btn+label{
	margin: 0;
	margin-right: 12px;
}
.radio_btn_wrap input[type="radio"].radio_btn+label:last-child{
	margin-right: 0;
}
input[type="radio"].radio_btn {
	display: none;
}
input[type="radio"].radio_btn+label {
  position: relative;
  cursor: pointer;

	display: inline-block;
	padding: 8px 12px;
	background: #fff;
	border: 1px solid #eee;
	color: #8F90A6;
	border-radius: 4px;

	font-size: .9em;
	border-radius: 25px;
}
input[type="radio"].radio_btn:checked+label {
	background: #425900;
	border-color: #425900;
	color: #fff;
}
.filebox input{
	margin-right: 4px;
}




/* btn */
.btn_box .btn{
	display: inline-block;
	margin: 0 20px;
}

.btn{
	line-height: 46px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.1s ease;
	padding: 0 20px;
	cursor: pointer;
	vertical-align: center;
}
.btn{
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.btn img{
	padding-left: 4px;
}

/* BTN - color */
.btn{
	background-color: #eee;
	border: 1px solid transparent;
}
.btn:hover,
.btn:focus {
	color: #fff;
	background-color: #595959;
	border-color: #595959;
}
.btn.black{
	background:#595959;
	color: #fff;
}
.btn.black:hover{
	background:#333;
}

.btn.primary{
	background-color: #425900;
	border-color: #425900;
	color: #fff;
}
.btn.primary:hover{
	background-color: #293800;
	border-color: #293800;
}
.btn.second{
	background-color: #fff;
	border-color: #425900;
	color: #425900;
}
.btn.second:hover{
	color: #293800;
	border-color: #293800;
}
.btn.secondary{
	background-color: #fff;
	border-color: #595959;
	color: #293800;
}
.btn.secondary:hover{
  color: #fff;
  background-color: #293800;
	border-color: #293800;
}
.btn.line{
	background-color: #fff;
	border-color: #DBDBDB;
	color: #192100;
}
.btn.line:hover{
  border-color: #595959;
  color: #293800;
}
.btn.type01{
	background: linear-gradient(90deg, #6698FA -6.44%, #293800 107.22%);
	border: 0;
	color: #fff;
}
.btn.type01:hover{
	box-shadow: inset 0 4px 4px rgb(0 0 0 / 20%);
}
/* BTN - shape */
.btn.round{
	border-radius: 100px;
}
.btn.sm{
	line-height: 38px;
	padding: 0 20px;
	font-size: 0.9em;
}
.btn.lg{
	line-height: 50px;
	padding: 0 40px;
	font-size: 1.05em;
	font-weight: 500;
}
.btn.xl{
	line-height: 58px;
	font-size: 1.125em;
	font-weight: bold;
}

/* BTN - Icon */
.btn[class*="ico_"]{
	padding: 0 20px;
	background-repeat: no-repeat;
	background-size: 16px;
	background-size: 1em;
	background-position: center left 20px; 
	padding-left: calc(20px + 16px + 8px);
	padding-left: calc(20px + 1em + 8px);
}
.btn[class*="ico_"].right{
	background-position: center right 20px;
	padding-left: 20px;
	padding-right: calc(20px + 1em + 12px);
}
.btn.ico_list{	background-image: url(/images/snbr/list.svg);}
.btn.ico_list:hover{	background-image: url(/images/snbr/list_on.svg); }
.btn.ico_write{	background-image: url(/images/snbr/write.svg); }

.btn.txt_btn{
	padding: 16px 24px;
  line-height: 1em;
}
.badge{
	background-color: #F0F2EB;
	color: #254C9C;
	border-radius: 4px;
	padding: 4px 12px;
	display: inline-block;
	font-size: 0.95em;
}
.tag{
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.9em;
	background: #D8DFDA;
	color: #222c2f;
	border-radius: 4px;
}
.tag_list > span{
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.9em;
    background: #fff;
    color: #0062A0;
    border-radius: 4px;
    line-height: 100%;
    border: 1px solid #0062A0;
    margin: 0 6px 6px 0;    
}
.tag_list > span.type01{
    color: #A00759;	
    border: 1px solid #A00759;
}

/* 새창아이콘 */
a:hover[href^="http://"], a:hover[href^="https://"]{
	color: #0B2EA0;
	text-decoration: underline;
}
a.link{
	background: url(/images/snbr/link.svg) no-repeat right center;
	padding-right: 1.5em;
}
.link_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.link_list > li{
    padding: 8px 20px;
	margin: 12px;
	width: calc(100% / 2 - 24px);
	transition: all .2s ease;
}
.btn.btn_link:hover {
    border-color: #dbdbdb;
    box-shadow: 0 0.25rem 0.5rem rgb(0 0 0 / 5%);
}
.btn_link a {
	background: url(/images/snbr/external_link.svg) no-repeat right 50%; 
    background-size: 1em;
	padding-right: 24px;
	color: #595959;
	text-decoration: unset;
	text-align: left;
	display: block;
	width: 100%;
	transition: all .2s ease;
}
.btn_link:hover a {
	background-image: url(/images/snbr/external_link_on.svg);
	color: #00A8FF;
	text-decoration: underline;
}




/* TABLE */
.limit{overflow-x:hidden;overflow-y:auto;}
.tbl_box.fixed {table-layout:fixed;}
.tbl_box_wrap .tbl_box{
  margin-bottom: 40px;
}

.tbl_box {
	width: 100%;
	position: relative;
	border-top: 3px solid #425900;
	line-height: 1.5em;
}
.tbl_box th,
.tbl_box td {
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}
.tbl_box thead th, 
.tbl_box thead td {
	position: relative;
	padding: 16px 12px;

	color: #333;
	font-weight: 500;
}
.tbl_box thead td {
	font-weight: bold;
}
.tbl_box tbody tr {
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.tbl_box > tbody > tr:hover {
  /* background-color: rgba(66, 89, 0, 0.05); */
}
.tbl_box tbody th{
	font-weight: 500;
}
.tbl_box tbody th,
.tbl_box tbody td {
	padding: 12px 12px;
}

.tbl_box.lg thead th,
.tbl_box.lg thead td,
.tbl_box.lg tbody th,
.tbl_box.lg tbody td {
	padding: 32px;
}

.tbl_box td.tit{
	font-weight: 600;
	text-align: center;
	color: #333;
}

.tbl_box.line {
	/* border-left: 1px solid #eee; */
}
.tbl_box.line th,
.tbl_box.line td{
	/* border-right: 1px solid #eee; */
	border: 1px solid #eee;
}
.tbl_box.left th:first-child,
.tbl_box.left td:first-child {
  padding-left: 40px;
}
.tbl_box.left th:last-child,
.tbl_box.left td:last-child {
  padding-right: 40px;
}

.tbl_box.type01 {
	border-top: 2px solid #425900;
	border-top: 2px solid #293800;
}
.tbl_box.type01 thead th, 
.tbl_box.type01 thead td {
	padding: 8px 12px;
	background: #f0f2eb;
	font-weight: bold;
	font-size: 0.9em;
	color: #192100;
	color: #293800;
}
.tbl_box.type01 tbody th{
	color: #293800;
	background: #f9faf7;
}

.tbl_box.type02 {
	border-top: 0;
}
.tbl_box.type02 thead th,
.tbl_box.type02 thead td {
	border-right: 0;
	background: #425900;
	color: #fff;
	border-bottom: 0;
}
.tbl_box.type02 thead td:before,
.tbl_box.type02 thead th:before {
	content: '';
	display: block;
	width: 1px;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -6px;
	background: #fff;
	opacity: 0.8;
}
.tbl_box.type02 thead th:last-child:before,
.tbl_box.type02 thead td:last-child:before {display: none;}


.tbl_box.type03 {
	border-top: 0;
}
.tbl_box.type03 th{
    color: #293800;
    background: #f0f2eb;
    background: #293800;
    color: #f0f2eb;
}

.tbl_box.type04 {
	border-top: 2px solid #79A00B;
}
.tbl_box.type04 thead th, 
.tbl_box.type04 thead td {
	padding: 12px;
	background: #f7f7f7;
	color: #333;
}
.tbl_box.type04 tbody th{
    color: #425900;
    font-size: 1.125em;
    white-space: nowrap;
    text-align: left;
    vertical-align: top;
}
.tbl_box.type04 tbody th, 
.tbl_box.type04 tbody td {
	padding: 28px 16px;
}

.tbl_box.type05 {
	border-top: 0;
}
.tbl_box.type05 tbody th, 
.tbl_box.type05 tbody td {
	padding: 24px 32px;
}
.tbl_box.type05 tbody th{
	border-top: 2px solid #79A00B;
    color: #333;
    font-size: 1.125em;
    white-space: nowrap;
    text-align: left;
    vertical-align: top;
}
.tbl_box.type05 tbody td {
	border-top: 2px solid #e0e0e0;
    line-height: 1.6em;
}


/* Table Detail */
.tbl_box > tbody + tbody {
  border-top: 2px solid #000;
}
.tbl_box .tbl_box {
  background-color: #fff;
}




/* 텍스트디자인 */
.highlight {
  position: relative;
  display: inline-block;
  padding: 0 4px;
}
.highlight:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background:#DEC76B;
  background:#C9D99D;
  opacity: 0.4;
  z-index: -1;
}

.marking{
  font-size: 0;
	display: inline-block;
	vertical-align: middle;
	padding: 0 4px 0 0;
}
.marking:before{
  content: "*";
	display: inline-block;
  font-size: 1rem;
  color: #e0615d;
	color: #dc5959;
  color:#FC5A5A;
	color:#FF615D;
	font-weight: 500;
}



.exclam_box{
  border-left: 2px solid #ff5252;
  background: #FFF5F5;
  border-radius: 4px;
  padding: 8px 12px;
}
.exclam {
  background: url(/images/snbr/exclam.svg) no-repeat 0 0.4em;
	padding-left: 1.5em;
	background-size: 1em;
	line-height: 1.8em;
}
.info_box{
  margin-bottom: 12px;
  border-radius: 8px;
  border-radius: 4px;
  padding: 16px 20px;
  border-left: 3px solid #425900;
  background: #F0F2EB;
}
.info{    
  background: url(/images/snbr/info.svg) no-repeat 0 0.4em;
  padding-left: 1.5em;
  background-size: 1em;
	line-height: 1.8em;
}
.more_info{
	background: url(/images/snbr/more_info.svg) no-repeat 0 0.4em;
  padding-left: 1.5em;
  background-size: 1em;
	line-height: 1.8em;
}

.txt_check{    
  padding-left: 1.5em;
  background: url(/images/snbr/txt_check.svg) no-repeat 0 0.35em;
  background-size: 1em;
	line-height: 1.8em;
	display: block;
}


/*  TXT BOX */
.card{
  border-radius: 4px;
  border-left: 4px solid #425900;
  padding: 16px 32px;
  margin-bottom: 12px;
  background: #f7f9ff;
}
.grey_box{
  border-radius: 4px;
  background: #f7f7f7;
  padding: 20px;
}
.grey_line_box {
  border-radius: 4px;
  padding: 16px 24px;
  background: #fff;
  border:4px solid #eee;
}
.bg_line_box{
	border-radius: 4px;
	padding: 16px 20px;
	background: #f0f2eb;
    border: 1px solid #e1e5d6;
	margin: 12px 0;
}
.bg_box{
  border-radius: 4px;
  padding: 16px 32px;
  margin-bottom: 12px;
  background: #F2F6E7;
}

.intro_box{
    border-radius: 20px 20px 8px 8px;
    position: relative;
    padding: 24px 40px;
    background: #fff;
    border: 2px solid #eee;
    line-height: 1.7em;
}
.intro_box:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    border: 2px solid #425900;
    border-bottom: 0;
    border-color: #425900;
    border-radius: 20px 20px 0px 0px;
    padding: 20px;
}

.step_list{
	position: relative;
	display: flex;
}
.step_list > li{
	position: relative;
	flex: 1;
}
.step_list > li:before{
	content: "";
	display: block;
	position: absolute;
    top: 0;
    right: -24px;
    height: 100%;
    width: 24px;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center left;
    
/* 	background-image: url(/images/snbr/step_next.svg); */
}
.step_list > li:last-child:before{
	display: none;
}
.step_list > li span,
.step_list > li strong,
.step_list > li i{
	display: block;
}
.step_list > li i{
	background-repeat: no-repeat;
	background-position: center;
}
.step_list > li:last-child {
    margin-right: 0;
}


.dl_list{}
.dl_list dl{
    display: flex;
    align-items: center;	
}

.dl_list.type01 dl{
  margin-bottom: 8px;
}
.dl_list.type01 dl dt{
  text-align: center;
  padding: 20px;
  background: #425900;
  color: #fff;
  border-radius: 4px;
  width: calc(20% - 12px);
  margin-right: 12px;
}
.dl_list.type01 dl dd{
  width: 80%;
  padding: 20px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #eee;
  /* box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.05); */
}

.dl_list.type02 dl dt{
    text-align: center;
    width: 100px;
    margin-right: 12px;		
    background: #F0F2EB;
    border-radius: 4px;
    padding: 4px 0;
    color: #293800;
    font-weight: 500;
}
.dl_list.type02 dl dd{
    flex: 1;
    border-bottom: 1px dashed #eee;
    padding: 12px 8px;	
}

.dl_list.type03 dl {
    margin-bottom: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 200px;
    padding: 24px;
}
.dl_list.type03 dl dt {
    text-align: center;
    font-weight: bold;
    color: #425900;
    width: 20%;
    font-size: 1.1em;
    min-width: 140px;
}
.dl_list.type03 dl dd {
    width: 80%;
    padding-left: 20px;
    border-left: 2px dashed #e0e0e0;
}


@media (max-width: 1024px) {
	.photo_layer .layer {
	    width: 94%;
	}
}

@media screen and (max-width: 850px) {
	.step_list {
	    flex-direction: column;
	}
	.step_list > li {
	    margin-right: 0;
        margin-bottom: 20px;
	}
	.step_list > li:last-child {
	    margin-bottom: 0;
	}	
	
	.dl_list.type03 dl {
	    flex-direction: column;
	}
	.dl_list.type03 dl dt {
	    width: 100%;
	}	
	}
	.dl_list.type03 dl dd {
	    width: 100%;
	    padding-left: 0;
	    border-left: 0;
	    border-top: 1px dashed #e0e0e0;
	    padding-top: 12px;
	    margin-top: 12px;
	    text-align: center;
	}
	
	
	
	
	.tbl_box.mob,
	.tbl_box.mob thead,
	.tbl_box.mob tbody,
	.tbl_box.mob tr,
	.tbl_box.mob th,
	.tbl_box.mob td {
		display: block;
	    width: 100%;
	}
	
	.photo_layer .title {
	    font-size: 1.5em;
	    padding: 0 0 20px 0;
	}
	.photo_layer .layer {
        padding: 20px;
	}
	.photo_layer .btn_close {
	    top: 16px;
	    right: 20px;
	}
}




