body {
    background-color: #f6f7f8;
	color: #666;
}
.container {
    padding: 0 40px 100px;
    margin: auto;
    width: 780px;
}
.input-row {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.table_wrap {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
table {
	table-layout: fixed;
	border-collapse: separate;
}

.plan-select tr {
    border: 1px solid #dddddd;
    border-collapse: collapse;
}
.plan-select tr th {
	padding: 10px 0;
	font-size: .95em;
	font-weight: 500;
	background: #f0f0f0;
}
.plan-select tr th:first-child {
	border-top-left-radius: 6px;
}

.plan-select tr th:last-child {
	border-top-right-radius: 6px;
}

.plan-select td {
    padding: 10px;
	text-align: center;
	font-size: .95em;
	border-bottom: 1px solid #dedede;
}

.plan-select .select {
    text-align: center;
}

.title h1 {
    margin-bottom: 30px;
}

.title p {
    margin-top: 10px;
}


.form-wrap {
    background-color: #fff;
    padding: 30px 20px 20px;
    border-radius: 15px;
}

.form-wrap form {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.require {
	position: relative;
	padding-left: 10px;
}
.require:after {
	content: '*';
	position: absolute;
	top: 0;
	left: 0;
	color: #d33d3d;
}

fieldset {
	display: flex;
	flex-direction: column;
	gap: 20px;
    padding: 0 20px;
    border: 0;
    /*border: 1px solid #2b73b9;*/
    /*border-radius: 3px;*/
}


legend {
    font-weight: bold;
    font-size: 24px;
    line-height: normal;
}

.title {
    padding: 70px 0;
    text-align: center;
}

.radio-item {
    margin-bottom: 10px;
}

.form-label {
    display: flex;
	flex-direction: column;
	gap: 7px;
}
.form-label input {
	padding-left: 15px;
}
.form-label input::placeholder {
	font-size: .875em;
	color: #aaa
}

.introduce {
	margin-top: 15px;
}

input[type="text"], input[type="email"], select {
    border: 1px solid #ddd;
	/*border-bottom: 2px solid #ccc;*/
	/*border-top-left-radius: 6px;*/
	/*border-top-right-radius: 6px;*/
	border-radius: 6px;
    height: 3em;
    width: 100%;
    padding: 2px .7em;
    font-size: 16px;
}

input[type="text"]:hover, input[type="email"]:hover, select:hover {
	background: #f8f8f8;
    /*border-color: #2b73ba;*/
}

input[type="text"]:focus, input[type="email"]:focus, select:focus {
    outline: none !important;
	background: #f8f8f8;
	border: 1px solid #2b73ba
    /*border-color: #2b73ba;*/
}

input[type='file'] {
	padding: 0;
}

.form-label:has(input[type="text"]:hover) span,
.form-label:has(input[type="email"]:hover) span,
.form-label:has(input[type="text"]:focus) span,
.form-label:has(input[type="email"]:focus) span,
.form-label:has(select:focus) span,
.form-label:has(select:hover) span,
.form-label:has(input[type="file"]:focus) span,
.form-label:has(input[type="file"]:hover) span{
	font-weight: 500;
}

.label_title:has(small.warn) .require {
	color: #d33d3d;
}

/*select {*/
/*    border: 1px solid #dddddd;*/
/*    border-radius: 3px;*/
/*}*/

.feedback {
    color: #d33d3d;
}

.domain-example {
	font-size: .875em;
}
.domain-label {
    color: #2b73ba;
}

.btn-wrap {
    margin: 40px auto;
    width: 200px;
}

.btn_type_confirm {
    background: #4c6199;
    border: 1px solid #4c6199;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    width: 200px;
    height: 2.5em;
}
.btn_type_confirm:hover {
    background-color: white;
    color: #4c6199;
    border-width: 1px;
    border-style: solid;
    border-color: #4c6199;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.confirm-wrap {
	margin-top: 30px;
    padding: 0 20px;
}

.confirm-wrap label {
	display: flex;
	gap: 7px;
}

.privacy-modal-open {
    color: #4c6199;
    font-weight: 700;
    cursor: pointer;
}

.asterisk {
    /*color: #bf0000;*/
    color: #fb5134;
    padding-left: 5px;
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-title {
    margin: 0 0 20px 0;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.6);
}

.modal-box {
    z-index: 10;
    border-radius: 3px;
    background-color: #fff;
    padding: 30px;
    width: 540px;
}

.modal-header {
    position: relative;
}

/*.modal-close-btn {*/
/*    width: 30px;*/
/*    height: 30px;*/
/*}*/

/*.modal-close-btn:before, .modal-close-btn:after {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    content:' ';*/
/*    height: 40px;*/
/*    width: 2px;*/
/*    background-color: #000;*/
/*}*/

/*.modal-close-btn:before {*/
/*    transform: rotate(45deg);*/
/*}*/

/*.modal-close-btn:after {*/
/*    transform: rotate(-45deg);*/
/*}*/
.modal-close-btn {
    background: url("../../images/ico_btn_close.png") 0 0 no-repeat;
    background-size: 14px;
    background-position: 50%;
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: 0;
    padding: 0;
}

.textarea {
    padding: 14px;
    font-size: .9rem;
    border: 1px solid #dadada;
}

/*footer {*/
/*    padding: 40px 20px 20px;*/
/*    background: black; }*/
/*footer b {*/
/*    color: #4c6199; }*/
/*footer .footer_inner {*/
/*    display: flex;*/
/*    margin: 0 auto;*/
/*    width: 1024px;*/
/*    gap: 20px;*/
/*    align-items: center; }*/
/*footer .footer_inner .footer_logo a {*/
/*    display: inline-block;*/
/*    width: 40px;*/
/*    height: 60px;*/
/*    background: url(../../images/prom_logo_simbol_white.png) no-repeat 0;*/
/*    background-size: contain;*/
/*    opacity: .7; }*/
/*footer .footer_inner .toolbar-left {*/
/*    display: block; }*/
/*footer .footer_inner .toolbar-right {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 15px;*/
/*    align-items: end; }*/
/*footer .footer_inner .toolbar-right .btn_type_brochure {*/
/*    background: none;*/
/*    color: #888888;*/
/*    font-size: .9em;*/
/*    border: 1px solid transparent;*/
/*    border-image: linear-gradient(to right, rgba(255, 0, 0, 0.7) 0%, rgba(255, 165, 0, 0.7) 100%);*/
/*    border-image-slice: 1; }*/
/*footer .footer_inner .toolbar-right .btn_type_brochure:hover {*/
/*    color: white;*/
/*    border-image: linear-gradient(to right, red 0%, orange 100%);*/
/*    border-image-slice: 1; }*/
/*footer .footer_inner .list_section {*/
/*    display: flex;*/
/*    align-items: center; }*/
/*footer .footer_inner .list_section li a {*/
/*    position: relative;*/
/*    padding: 0 10px; }*/
/*footer .footer_inner .list_section li a:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 0;*/
/*    width: 1px;*/
/*    height: 10px;*/
/*    background: #dddddd;*/
/*    transform: translate(0, -50%); }*/
/*footer .footer_inner .list_section li:nth-child(1) a {*/
/*    padding-left: 0; }*/
/*footer .footer_inner .list_section li:nth-child(1) a:after {*/
/*    display: none; }*/
/*footer .footer_inner .list_section li a {*/
/*    display: inline-block;*/
/*    color: white;*/
/*    font-size: .9em;*/
/*    line-height: 1;*/
/*    color: #dddddd; }*/
/*footer .footer_inner .footer_etc {*/
/*    margin-top: 15px;*/
/*    color: #888888; }*/
/*footer .footer_inner .footer_etc .etc_group {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin: 3px 0; }*/
/*footer .footer_inner .footer_etc .etc_group span {*/
/*    position: relative;*/
/*    display: block;*/
/*    padding: 0 5px;*/
/*    font-size: .85em; }*/
/*footer .footer_inner .footer_etc .etc_group span:before {*/
/*    content: '';*/
/*    display: inline-block;*/
/*    margin: -2px 7px 0 1px;*/
/*    width: 3px;*/
/*    height: 7px;*/
/*    background: url(../../images/f_dash.png) no-repeat 0;*/
/*    vertical-align: 1px; }*/
/*footer .footer_inner .footer_etc .etc_group span:first-child:before {*/
/*    display: none; }*/
/*footer .footer_inner .copy {*/
/*    display: none;*/
/*    margin-top: 10px;*/
/*    font-size: .9em;*/
/*    color: white; }*/
/*footer .footer_inner.bottom {*/
/*    padding: 20px 0 0;*/
/*    margin-top: 20px;*/
/*    border-top: 1px solid #444; }*/
/*footer .footer_inner.bottom .certification_wrap {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 20px; }*/
/*footer .footer_inner.bottom .certification_wrap .certification_list {*/
/*    display: flex;*/
/*    gap: 12px;*/
/*    align-items: center; }*/
/*footer .footer_inner.bottom .certification_wrap .certification_list img {*/
/*    height: 40px; }*/
/*footer .footer_inner.bottom .certification_wrap .certification_list span {*/
/*    font-size: 1em;*/
/*    color: #999; }*/
/*footer .footer_inner.bottom .certification_wrap .certification_list + .certification_list {*/
/*    position: relative;*/
/*    padding-left: 20px; }*/
/*footer .footer_inner.bottom .certification_wrap .certification_list + .certification_list:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    width: 1px;*/
/*    height: 25px;*/
/*    background: #444; }*/
/*footer .footer_inner .ft-area .family-site .select-box {*/
/*    position: relative;*/
/*    height: 33px; }*/
/*footer .footer_inner .ft-area .family-site .select-box .hide {*/
/*    display: block;*/
/*    position: absolute; }*/
/*footer .footer_inner .ft-area .select-box {*/
/*    position: relative;*/
/*    width: 200px;*/
/*    z-index: 1; }*/
/*footer .footer_inner .ft-area .select-box label {*/
/*    position: absolute;*/
/*    top: 1px;*/
/*    left: 5px;*/
/*    padding: 0.8em 0.5em;*/
/*    color: #999999;*/
/*    z-index: -1; }*/
/*footer .footer_inner .ft-area .select-box select {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    line-height: normal;*/
/*    border: 1px solid transparent;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    color: #444444;*/
/*    font-size: .9em;*/
/*    cursor: pointer;*/
/*    padding-left: 15px;*/
/*    background-color: #f6f6f6; }*/
/*footer .footer_inner .ft-area .select-box select > option {*/
/*    color: black;*/
/*    background-color: white; }*/
/*footer .footer_inner .ft-area:after {*/
/*    content: "";*/
/*    display: block;*/
/*    clear: both; }*/
/*footer .footer_inner .family_area {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    width: 100%;*/
/*    gap: 7px;*/
/*    color: #888888; }*/
/*footer .footer_inner .family_area p {*/
/*    font-size: .8em; }*/
/*footer .footer_inner .family_area a:hover {*/
/*    background: rgba(255, 255, 255, 0.7);*/
/*    color: black; }*/

/*.toolbar_wrap {*/
/*    display: flex;*/
/*    padding: 5px;*/
/*    width: 100%;*/
/*    align-items: center;*/
/*    box-sizing: border-box;*/
/*    flex: 1 1; }*/
/*.toolbar_wrap .toolbar {*/
/*    display: flex;*/
/*    align-items: center; }*/
/*.toolbar_wrap .toolbar-center {*/
/*    justify-content: center; }*/
/*.toolbar_wrap .toolbar-right {*/
/*    justify-content: flex-end;*/
/*    margin: 0 0 0 auto; }*/


/*html,body,h1,h2,h3,h4,h5,h6,div,p,blockquote,pre,code,address,ul,ol,li,menu,nav,section,article,aside,*/
/*dl,dt,dd,table,thead,tbody,tfoot,label,caption,th,td,form,fieldset,legend,hr,input,button,textarea,object,figure,figcaption {font-family:'noto sans kr','nanumsquare'; margin:0;padding:0;}*/
/*ul,ol,li{list-style:none;}*/

/*a{color:#000;text-decoration:none;cursor:pointer;}*/

/*body{width:100%; background:#fff; min-width:320px; -webkit-text-size-adjust:none;word-wrap:break-word;word-break:break-all;}*/
/*html{-webkit-touch-callout:none; -webkit-user-select:none; -webkit-tap-highlight-color:rgba(0, 0, 0, 0);}*/

/*.family_area .btn_type_inquiry {*/
/*    font-size: .75em;*/
/*}*/
/*.btn_type_inquiry:hover {*/
/*    background-color: #4c6199;*/
/*    color: white;*/
/*    border-width: 1px;*/
/*    border-style: solid;*/
/*    border-color: #4c6199;*/
/*    transition: all .2s ease-in-out;*/
/*}*/
/*.btn_type_inquiry {*/
/*    background: white;*/
/*    color: #4c6199;*/
/*    border: 1px solid rgba(76, 97, 153, 0.4);*/
/*}*/
/*[class*='btn_type'] {*/
/*    display: inline-block;*/
/*    padding: 5px 10px;*/
/*    border: 1px solid #222229;*/
/*}*/
/*html, body {*/
/*    letter-spacing: -0.5px;*/
/*}*/

.info_wrap {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.info_wrap li {
	position: relative;
	padding: 0 5px;
	font-size: .925em;
}
.info_wrap li:last-child a {
	position: relative;
	font-weight: 500;
}
.info_wrap li:last-child a:hover {
	color: #2b73b9;
}
.info_wrap li:last-child a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: #aaa;
	transition: all .3s;
}
.info_wrap li:last-child a:hover:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #2b73b9;
}

.info_wrap li:after {
	content:'';
	position: absolute;
	top: 50%;
	left: -5px;
	width: 1px;
	height: 12px;
	background: #aaa;
	transform: translate(0, -50%);
}
.info_wrap li:first-child:after {
	display: none;
}

.introduce {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.introduce p {
	margin-top: 0;
	font-size: .925em;
	line-height: 1;
}
h1, h3 {
	color: #333;
}
h3 {
	font-size: 19px;
}

.input_wrap {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.feedback-wrap:has(small:empty)  {
	display: none;
}
.input_section {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.label_title {
	display: flex;
	gap: 7px;
	align-items: center;
}