/*button style*/
.btn-custom,
a.btn-custom { display: flex; justify-content: center; align-items: center; width: 260px; padding: 0 16px; height: 52px; border: none; box-sizing: border-box; background: #0740e4; font-size: 20px; font-weight: 700; color: #fff; transition: 0.2s all ease-out; }

.btn-custom-v1 { background: #ededed; color: #a5a5a5; }

/*중앙 버튼*/
.btn-group-center { display: flex; justify-content: center; align-items: center; margin: 0 auto; }
.btn-group-center .btn:not(:last-child) { margin-right: 20px; }

.box-btn-group { margin-top: 80px; }

.btn-info { margin-top: 18px; font-size: 18px; font-weight: 400; color: rgba(16, 16, 16, 0.5); text-align: center; line-height: 27px; }


/*checkbox & radio button style*/
.ck-custom { display: none; }
.ck-custom + label { display: flex; align-items: center; cursor: pointer; }
.ck-custom + label .custom { width: 28px; height: 28px; margin-right: 12px; background: url('../img/common/ico_check1_off.svg') center center no-repeat; background-size: contain; transition: .2s all ease-out; }
.ck-custom + label .label { display: flex; align-items: center; width: calc(100% - 40px); font-size: 18px; font-weight: 700; color: #101010; }
.ck-custom + label .label strong { margin-right: 4px; font-weight: 700; color: #0740e4; }
.ck-custom + label .label .btn-view { margin-left: 12px; border: none; background: none; font-size: 18px; font-weight: 700; color: #a0a3aa; text-decoration: underline; }
.ck-custom:checked + label .custom { background-image: url('../img/common/ico_check1_on.svg'); }

.ck-custom2 { display: none; }
.ck-custom2 + label { display: flex; justify-content: center; align-items: center; height: 45px; padding: 0 20px; border: 1px solid #101010; border-radius: 23px; box-sizing: border-box; font-size: 16px; font-weight: 700; color: #101010; transition: .2s all ease-out; cursor: pointer; }
.ck-custom2:checked + label { background: #101010; color: #fff; }

.list-ck { display: flex; align-items: center; margin: -8px; }
.list-ck li { margin: 8px; }


/*select style*/
.select-custom { display: block; height: 45px; padding: 0 60px 0 20px; border: 1px solid #101010; border-radius: 23px; box-sizing: border-box; font-size: 16px; font-weight: 700; color: #101010; transition: 0.2s all ease-out; }


/*form style*/
.frm:not(:last-child) { margin-bottom: 110px; }
.frm > .inner { max-width: 1200px; margin: 0 auto; }

.top-frm { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid #c2c2c2; box-sizing: border-box; }
.top-frm .tit { font-size: 32px; font-weight: 700; color: #000; }

.top-frm2 { margin-bottom: 40px; }
.top-frm2 .tit { font-size: 24px; font-weight: 700; color: rgba(16, 16, 16, 0.4); }

.list-frm .tr { display: flex; width: 100%; margin-bottom: 40px; }
.list-frm .tr:last-child { margin-bottom: 0; }
.list-frm .th { width: 220px; padding: 12px 0; box-sizing: border-box; }
.list-frm .th .tit { display: flex; align-items: center; position: relative; font-size: 18px; font-weight: 700; color: #101010 }
.list-frm .th .required { width: 8px; height: 8px; margin-left: 8px; border-radius: 50%; box-sizing: border-box; background: #ff592a; }
.list-frm .td { width: calc(100% - 220px); }
.list-frm .td .txt { min-height: 45px; padding: 12px 0; box-sizing: border-box; font-size: 18px; font-weight: 700; color: #101010; }

.inp-frm { display: block; width: 100%; height: 45px; padding: 0 4px; border: none; border-bottom: 1px solid rgba(0, 0, 0, 0.2); box-sizing: border-box; background: none; font-size: 18px; font-weight: 700; color: #101010; transition: 0.2s all ease-out; }
.inp-frm:focus { border-bottom-color: #000; }

.btn-frm { display: flex; justify-content: center; align-items: center; width: 103px; height: 45px; border: none; background: #ededed; font-size: 18px; font-weight: 700; color: #101010; }

.frm-message { margin-top: 10px; font-size: 16px; font-weight: 400; color: #ff592a; }
.frm-message-v1 { margin-top: 10px; font-size: 16px; font-weight: 400; color: #0740e4; }

.frm-message2 { font-size: 16px; font-weight: 600; color: #7590f4; }

.js-display-view { display: none; }

.inp-group-car { display: flex; align-items: center; }
.inp-group-car .select-group { display: flex; align-items: center; margin-right: 16px; }
.inp-group-car .select-group .select-custom:not(:last-child) { margin-right: 16px; }

.inp-group-address > div { display: flex; align-items: center; width: 100%; margin-bottom: 16px; }
.inp-group-address .inp-frm:not(:only-child) { width: calc(100% - 103px); }

.inp-group-date { display: flex; align-items: center; }
.inp-group-date .inp-date { width: 100%; padding-right: 44px; box-sizing: border-box; background: url(../img/common/ico_calendar1.svg) right 10px center no-repeat; cursor: pointer; }


@media only screen and (max-width: 1280px) {
	/*button style*/
	.btn-custom,
	a.btn-custom { width: 100%; height: 47px; font-size: 16px; }
	
	/*중앙 버튼*/
	.btn-group-center .btn:not(:last-child) { margin-right: 8px; }
	
	.box-btn-group { margin-top: 40px; padding: 0 20px; box-sizing: border-box; }
	
	.btn-info { margin-top: 18px; font-size: 16px; line-height: 24px; }
	
	/*checkbox & radio button style*/
	.ck-custom + label .custom { width: 20px; height: 20px; margin-right: 8px; transition: none; }
	.ck-custom + label .label { width: calc(100% - 28px); font-size: 14px; }
	.ck-custom + label .label .btn-view { margin-left: auto; margin-right: 0; font-size: 14px; }
	
	.ck-custom2 + label { height: 43px; }
	
	.list-ck { flex-wrap: wrap; margin: -4px; }
	.list-ck li { display: inline-flex; margin: 4px; }
	
	/*select style*/
	.select-custom { height: 43px; }
	
	/*form style*/
	.frm > .inner { padding: 0 20px; box-sizing: border-box; }
	
	.top-frm { margin: 0 -20px 32px; padding: 13px 20px; box-sizing: border-box; }
	.top-frm .tit { font-size: 24px; }
	
	.top-frm2 .tit { font-size: 21px; }
	
	.list-frm .tr { display: block; }
	.list-frm .th,
	.list-frm .td { width: 100%; }
	.list-frm .th { margin-bottom: 10px; padding: 0; }
	.list-frm .th .tit { font-size: 16px; }
	.list-frm .th .required { width: 6px; height: 6px; }
	
	.inp-frm { font-size: 16px; }
	
	.btn-frm { width: 96px; font-size: 16px; }
	
	.frm-message { font-size: 14px; }
	.frm-message-v1 { font-size: 16px; }
	
	.frm-message2 { margin-top: 10px; font-size: 14px; }
	
	.inp-group-car { display: block; }
	.inp-group-car .select-group { margin-right: 0; margin-bottom: 10px; }
	.inp-group-car .select-group:last-child { margin-bottom: 0; }
	.inp-group-car .select-group .select-custom { width: 100%; }
	.inp-group-car .select-group .select-custom:not(:last-child) { margin-right: 8px; }
	
	.inp-group-address > div { margin-bottom: 10px; }
	.inp-group-address .inp-frm:not(:only-child) { width: calc(100% - 96px); }
}