#company-info input.email{
    width: 550px;
}

#company-info .btn-email{
    width: 158px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #676f7b;
    color: #fff;
    line-height: normal;
    cursor: pointer;

}
		
#company-info input.countrycode{
    width: 144px;
	background-color:#fafafa;
}
#company-info input.tel{
    width: 566px;
	background-color:#fafafa;
}
    
#company-info input.countrycode_eng{
    width: 144px;
}
#company-info input.tel_eng{
    width: 566px;
}
		
#company-info input.mobile{
    width: 550px;
}

#company-info .btn-mobile{
    width: 158px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #d84141;
    color: #fff;
    line-height: normal;
    cursor: pointer;
}
		
.radio+label{
    color: #717983;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    width: auto;
}
		
.form-survey {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 15px;
    row-gap: 5px;
}

.form-survey.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-survey.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-survey .checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.form-survey .checkbox-wrap .checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    top: 1px;
}

.form-survey .checkbox-wrap label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    line-height: 1.4;
    white-space: normal;
    word-break: keep-all;
    line-height: 34px;
}

.form-survey .checkbox-wrap.etc input[type="text"] {
    flex: 1;
    width: 100%;
    height: 32px;
    line-height: 32px;
    box-sizing: border-box;
    margin-left: 0;
}
		
.form-survey input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-survey .checkbox-wrap.etc.two-cols {
    grid-column: span 2 !important; 
    display: flex;
    align-items: center;
    width: 100%;
}

.form-survey .checkbox-wrap.etc.two-cols input[type="text"] {
    flex: 1;
}

/* 커스텀 라디오 기본 스타일 */
.form-survey .checkbox-wrap .radio {
    width: 16px;
    height: 16px;
    border: 1px solid #999;
    border-radius: 50%;              /* ✔ 동그라미 */
    flex-shrink: 0;
    position: relative;
    top: 1px;                        /* 체크박스와 높이 맞춤 */
    display: inline-block;
    background-color: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

/* 라디오 선택됨 상태 스타일 */
.form-survey input[type="radio"]:checked + .radio {
    border-color: #252830;            /* 외곽선 강조 */
}

.form-survey input[type="radio"]:checked + .radio::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: #252830;        /* 안쪽 점 */
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

div.tab-wrapper .tabs {
    display: flex;
    border-bottom: 1px solid #000;
    padding-left: 36px;
	margin-bottom: 45px;
    gap: 10px;
}

div.tab-wrapper .tabs li {
    padding: 12px 20px;
    cursor: pointer;
    background: #f6f7fa;
    color: #2c2c2c;
    font-size: 15px;
    border: 1px solid #d5d5d5;
    border-bottom: none;
    transition: background 0.2s ease;
    border-radius: 10px 10px 0 0;
}

div.tab-wrapper .tabs li + li {
    margin-left: -1px;
}

div.tab-wrapper .tabs li.active {
    background: #fff;
    font-weight: 600;
    border: 1px solid #2c2c2c;
    border-top: 2px solid #2c2c2c;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

.tab-item {
    display: none;
}

.seminar_wrap {
    padding-top: 18px;
    padding-right: 100px;
}

.seminar_table{
    display: table;
    width: 100%;
    border-collapse: collapse;
    color: #2c2c2c;
}

.seminar_row{
    display: table-row;
}

.seminar_row.header {
    background: #f2f2f2;
    font-weight: 600;
}

.seminar_cell {
    display: table-cell;
    padding: 12px 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.seminar_cell.bold {
    font-weight: 600;
}

.seminar_cell.br0 {
    border-right: 0;
}

/* 캡슐 스타일 드롭다운 */
.modern-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    padding: 10px 30px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px; 
    background-color: #f9f9f9; 
    color: #333;
    cursor: pointer;
    font-size: 14px;
    outline: none; 
   
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center; /* 우측에 아이콘 위치 */
    background-size: 16px; 
}

.modern-select:hover {
    border-color: #007bff; /* 호버 시 테두리 색상 강조 (파란색 계열) */
    background-color: #fff; /* 배경색을 흰색으로 변경 */
    box-shadow: 0 1px 3px rgba(0, 123, 255, 0.1); /* 은은한 그림자 추가 */
}

.modern-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); /* 포커스 링 효과 */
}

.form-survey .checkbox-wrap.etc label{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.btn-inline {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    margin: 0 3px;
    text-decoration: none;
    padding: 5px 14px;
    background: #676f7b;
    border-radius: 8px;
    font-size: 14px;
}
.btn-inline:hover {
    background: #3166da;
}

.form-group > ul {
    display: flex;
    flex-direction: row;
}

.form-group > ul > li p:nth-child(2) {
    padding-top: 5px;
}


    .seminar_table, .seminar_row, .seminar_cell {
        display: block;
        width: 100%;
        padding: 0 20px;
    }
    .seminar_row {
        margin-bottom: 16px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
    }
    .seminar_row.header {
        display: none; 
    }
    .seminar_cell {
        border: none;
        padding: 8px 12px;
        position: relative;
        padding-left: 0;
        text-align: center;
    }
    .seminar_cell::before {
        position: absolute;
        left: 12px;
        top: 8px;
        font-weight: 600;
        content: attr(data-label);
    }

.seminar_wrap {
        padding-top: 20px;
        padding-right: 0;
    }

    .spacer {
    display: inline;
    }

#mail_section_01 .btn_area {
    display: flex;
    justify-content: flex-end;
    padding: 0 0 36px 0;
}

#mail_section_01 .btn_area .btn {
    width: 148px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #252830;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
    color: #fff;
    font-weight: 700;
}

.visi_con {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}



.visi_con > input {
    width: 100%;
}

.policy h3 {
    font-size: 24px;
}

.policy p{
    
}

.agree-box h4 {
    font-size: 20px;
    font-weight: 700;
}

section.policy .agree-box.head_er {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    
}

section.policy .agree-box.head_er label {
    margin-bottom: 0;
}

#agree_wrap,
#agree_wrap_2 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px 10px;
    margin-bottom: 20px;
}

#agree_wrap_2 {
    padding-top: 18px;
}

#agree_wrap > div p,
#agree_wrap_2 > div p {
    font-size: 16px;
    color: #676f7b;
}

#agree_wrap > div p.pa-left,
#agree_wrap_2 > div p.pa-left {
    margin-left: 10px;
}

.agree-box h6 {
    font-size: 14px;
}

.agree-custom-textarea {
    height: 100px !important;
}

.divider-policy {
    height: 2px;
    background: #2c2c2c;
}

@media screen and (max-width: 768px) {
    .form-survey {
        
    }

    .form-survey.cols-2,
    .form-survey.cols-4 {
    }

    .form-survey {
        row-gap: 12px;
    }

    .form-survey .checkbox-wrap {
        align-items: flex-start; 
        gap: 8px;
    }

    .form-survey .checkbox-wrap.etc input[type="text"] {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        height: 36px;
        line-height: 36px;
    }

    #company-info {
        gap: 0;
    }

    #exhi-regis .btn_area {
        padding: 0 0 40px !important;
    }

    .accor-content ul {
        list-style-type: disc;
        padding: 10px 0 !important;
        margin: 0;
        list-style: none;
    }

    .accor-content li {
        margin-bottom: 0 !important;
        line-height: 40px !important;
        padding-left: 0 !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    #mail_section_01 .notice_textarea.mail_title h4 {
        text-align: center;
        color: #0a0f29;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0 !important;
        font-size: 20px !important;
        font-weight: 500;
        word-break: break-all; /* 긴 단어를 임의로 줄바꿈합니다 */
        overflow-wrap: break-word
    }

    .barcode_info_container {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        background: #f9f9f9;
        padding: 20px !important;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    #mail_section_01 {
        width: 100% !important;
        margin: 0 auto !important;
        padding-top: 97px;
    }

    div.tab-wrapper .tabs li {
        padding: 5px 10px;
        font-size: 16px;
        white-space: nowrap;
    }

    .spacer {
        font-size: 0;
        display: none;
    }

    div.tab-wrapper .tabs {
        padding-left: 10px;
        margin-bottom: 40px;
        gap: 5px;
    }

    .phone-group {
        margin-bottom: 10px;
    }
        
}

@media screen and (min-width: 361px) and (max-width: 767px) {
    .radio-custom {
        width: 100%;
    }

    .form-survey {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-survey.cols-2,
    .form-survey.cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-survey.cols-2{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .form-survey .checkbox-wrap.etc input[type="text"] {
        flex: 1;
        width: 100%;
        max-width: 100%;
        height: 36px;
        line-height: 36px;
    }
    #company-info {
        gap: 20px;
    }

    #exhi-regis .btn_area {
        padding: 40px 0 !important;
    }

    .accor-content ul {
        list-style-type: disc;
        padding: 10px 0 !important;
        margin: 0;
        list-style: none;
    }

    .accor-content li {
        margin-bottom: 0 !important;
        line-height: 40px !important;
        padding-left: 0 !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    #mail_section_01 .notice_textarea.mail_title h4 {
        text-align: center;
        color: #0a0f29;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0 !important;
        font-size: 20px !important;
        font-weight: 500;
        word-break: keep-all; 
        overflow-wrap: break-word;
    }

    .barcode_info_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 20px;
        background: #f9f9f9;
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    #mail_section_01 {
        width: 100% !important;
        padding: 78px 20px 0 20px !important;
        margin: 0 !important;
    }

    div.tab-wrapper .tabs li {
        padding: 5px 10px;
        font-size: 14px;
        word-break: break-all;
    overflow-wrap: break-word;
    white-space: normal;
        white-space: wrap;
    }

    .spacer {
        font-size: 0;
        display: none;
    }

    div.tab-wrapper .tabs {
        padding-left: 0;
        margin-bottom: 40px;
        gap: 5px;
    }

}

@media screen and (max-width: 360px) {

    .agree-box h4 {
        font-size: 18px;
        font-weight: 700;
    }

    #agree_wrap > div p, #agree_wrap_2 > div p {
        font-size: 14px;
        color: #676f7b;
    }

    #agree_wrap > div p.pa-left, #agree_wrap_2 > div p.pa-left {
        margin-left: 0;
    }

    .radio-custom {
        width: 100%;
    }

    .form-survey {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-survey.cols-2,
    .form-survey.cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-survey.cols-2{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .form-survey .checkbox-wrap.etc input[type="text"] {
        flex: 1;
        width: 100%;
        max-width: 100%;
        height: 36px;
        line-height: 36px;
    }
    #company-info {
        gap: 20px;
    }

    #exhi-regis .btn_area {
        padding: 40px 0 !important;
    }

    .accor-content ul {
        list-style-type: disc;
        padding: 10px 0 !important;
        margin: 0;
        list-style: none;
    }

    .accor-content li {
        margin-bottom: 0 !important;
        line-height: 32px !important;
        padding-left: 0 !important;
    }

    .accor-content ul {
        list-style-type: disc;
        padding: 10px 0 !important;
        margin: 0;
        list-style: none;
    }

    .accor-content li {
        margin-bottom: 0 !important;
        line-height: 40px !important;
        padding-left: 0 !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .accor-header.main-depth {
        padding: 10px 20px;
    }

    .accor-header {
        padding: 10px 20px;
    }

    div.tab-wrapper .tabs li {
        padding: 4px 7px;
        font-size: 14px;
        white-space: wrap;
        word-break: break-all; /* 긴 단어를 임의로 줄바꿈합니다 */
        overflow-wrap: break-word;
    }

    .spacer {
        font-size: 0;
        display: none;
    }

    div.tab-wrapper .tabs {
        padding-left: 0;
        margin-bottom: 40px;
        gap: 5px;
    }

}