@charset "utf-8"; 
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@font-face {
  font-family: "GmarketSans";
  font-style: normal;
  font-weight: 300;
  src: url(../font/GmarketSansLight.woff2) format("woff2"),
    url(../font/GmarketSansLight.woff) format("woff"),
    url(../font/GmarketSansLight.ttf) format("truetype");    
}

@font-face {
  font-family: "GmarketSans";
  font-style: normal;
  font-weight: 400;
  src: url(../font/GmarketSansMedium.woff2) format("woff2"),
    url(../font/GmarketSansMedium.woff) format("woff"),
    url(../font/GmarketSansMedium.ttf) format("truetype");
}

@font-face {
  font-family: "GmarketSans";
  font-style: normal;
  font-weight: 700;
  src: url(../font/GmarketSansBold.woff2) format("woff2"),
    url(../font/GmarketSansBold.woff) format("woff"),
    url(../font/GmarketSansBold.ttf) format("truetype");
}

:root {
  --color-primary: #FFD900;
  --color-primary-2: #FF6CDF;
  --color-point: #3C378C;
  --color-gray-1: #000000;
  --color-gray-2: #A3A3A3;
  --color-gray-7: #525252;
  --color-white: #ffffff;

  --font-family: 'Pretendard';

}

/* html {
  font-size: 62.5%;
} */

html,
body {
  width: 100%;
  height: 100%;
  word-break: break-word;
  -ms-word-break: break-word;
  -webkit-text-size-adjust: none;
}
html,
body {
  font-size: 16px;
  font-family: 'Pretendard', sans-serif;
  letter-spacing: -0.8px;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
form,
fieldset,
p,
button,
input,
table {
  margin: 0;
  padding: 0;
}
body img,
fieldset,
iframe {
  border: 0 none;
}
img {
  max-width: 100%;
  vertical-align: top;
}
li {
  list-style: none;
}
input,
select,
button {
  vertical-align: middle;
}
i,
em,
address {
  font-style: normal;
}
label,
button {
  cursor: pointer;
}
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}
a {
  color: #000;
}
label {
  font-weight: normal;
}
button {
  border: none;
  background: none;
}
hr {
  display: none;
}
legend {
  width: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
textarea,
button,
select {
  font-family: 'Pretendard', sans-serif;  
  -webkit-border-radius: 0;
  border-radius: 0;
  letter-spacing: -1px;
}
/* 모바일 webkit 브라우져에서 input 등 기본 속성 제거 */
input:-internal-autofill-selected {
  background: none;
}
/* select {-webkit-appearance: none; -moz-appearance: none; appearance: none;} */
input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

* {
  box-sizing: border-box;
}
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
  word-break: keep-all;
}

.wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  width: 100%;
  padding: 100px 0 80px 0;
}
.inner {
  max-width: 1240px;
  margin: 0 auto;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 26.4px;
  letter-spacing: -1px;
  color: var(--color-gray-1);
  word-break: break-all;
}
/* ======================= input ======================= */
.radio-box {
  margin: -12px 0px 0px -40px;
}
.radio {
  margin: 12px 0px 0px 40px;
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.radio-label {
  display: inline-block;
  font-size: 18px;
  line-height: 29px;
  font-weight: normal;
  padding-left: 25px;
  vertical-align: top;
}
.radio-label::before {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  background: url(../img/common/icon/icon-radio.png);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;  
}
input:checked + .radio-label::before {
  background-position: -29px 0;
}

.checkbox-type input[type="checkbox"] {
  display: none;
}
.checkbox-type span {
  display: inline-block;
  position: relative;  
  font-size: 14px;
  line-height: 16.8px;
  color: var(--color-gray-7);
  padding-left: 30px;
}
.checkbox-type span::before {
  position: absolute;
  top: calc(50% - 10px);
  left: 0px;
  background-image: url(../img/common/icon/icon-checkbox.png);
  background-repeat: no-repeat;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  margin-right: 10px;
}
.checkbox-type input[type="checkbox"]:checked ~ span::before {
  background-position: -29px 0;
}

.select-box {
  position: relative;
  display: inline-block;
}

.select {
  appearance: none; 
  -webkit-appearance: none; 
  -moz-appearance: none; 
  background: var(--color-white);
  border: 1px solid #525252;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  border-radius: 15px;
}

.select:invalid {
  background: var(--color-white) !important; 
}

.select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px; 
  transform: translateY(-50%);
  width: 16px;
  height: 24px; 
  background: #fff url('../img/common/icon/icon-drop.png') no-repeat center center;
  background-size: contain; 
  pointer-events: none;
}
.textarea {
  width: 100%;
  border: 1px solid #525252;
  color: var(--color-gray-1);
  height: 240px;  
  font-size: 18px;
  font-weight: normal;
  line-height: 21.6px;
  border-radius: 15px;
  padding: 14px 20px;
  overflow: hidden;
  resize: none;
  display: block;
  outline: none; 
  overflow-y: hidden; 
  transition: height 0.2s; 
}
textarea.textarea:focus {
  overflow-y: auto;
  border: 1px solid var(--color-point);  
}
textarea.textarea:disabled {
  overflow-y: auto; 
}

textarea.textarea::-webkit-scrollbar {
  width: 5px; 
  height: 8px;
}

textarea.textarea::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px; 
}
textarea.textarea::-webkit-scrollbar-corner {
  background: transparent; 
}
.textarea.type-short {
  height: 120px;
}
.textarea::placeholder {
  color: var(--color-gray-2);
}
.submit-form.finished .textarea {
  height: 120px;
}

/* ======================= btn ======================= */
.main-btn-wrap {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.main-btn-wrap .l-wrap {
  flex: 5;
}
.main-btn-wrap .r-wrap {
  flex: 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-btn-wrap .btn {  
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "GmarketSans";
  font-weight: 400;  
  border-radius: 15px;
}
.main-btn-wrap .btn-big {
  font-size: 35px;
  line-height: 35px;    
}

.main-btn-wrap .btn-object {
  height: 190px;
  position: relative;  
  transition: transform 0.2s;
  font-weight: bold;
  padding: 0px 10px; 
  background-color: rgba(255, 216, 0, 0.4); 
  box-sizing: border-box;  
}
.btn-object .btn-image {
  display: inline-block;
  width: 150px; 
  height: 100%; 
  margin-right: 28px; 
  background: url('../img/common/btn-object.png') no-repeat;
  background-size: contain;
  background-position-y: bottom; 
}
.btn-object .btn-text {
  display: inline-block;
  margin-right: 2.4vw;
}

.main-btn-wrap .btn-normal {
  height: 85px; 
  font-size: 14px;
  border-radius: 8px;  
  font-size: 25px;
  line-height: 25px;    
  background: rgba(60, 55, 139, 0.18);
}

#teen .main-btn-wrap .btn-normal {  
  background: rgba(247, 119, 214, 0.3);
}

/* SNS */
.link-btn-wrap {
  display: flex;  
}
.apply-main .link-btn-wrap {
  width: 290px;
  margin: 0 auto;
  display: flex;
  justify-items: center;
  gap: 40px;
  justify-content: space-between;
  margin-top: 80px;  
}
.link-btn-wrap .link-btn {
  display: block;
  width: 70px;
  height: 70px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.link-btn.kakao {
  background-image: url(../img/common/sns-kakao.png);
}
.link-btn.naver {
  background-image: url(../img/common/sns-naver.png);
}
.link-btn.copy-link {
  background-image: url(../img/common/sns-link.png);
}


/* sub-btn */
.btn-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 100px;  
}
.btn-wrap.align-c {
  justify-content: center;
}

.btn-wrap .btn { 
  width: 250px;
  height: 80px; 
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "GmarketSans";
  font-size: 25px;
  font-weight: 400;  
  border-radius: 15px;
}
.btn-wrap .btn.btn-big {
  width: 420px;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-gray-1);
}
#teen .btn-primary {
  background: var(--color-primary-2);
  color: var(--color-white);
}
.btn-primary2 {
  background: rgba(255, 216, 0, 0.4);
  color :var(--color-gray-1);
}
#teen .btn-primary2 {
  background: #FFE8FA;
  color: var(--color-gray-7);  
}
.btn-secondary {
  background: var(--color-point);
  color: var(--color-white);
}
#teen .btn-secondary {
  background: var(--color-gray-7);
}

/* ======================= main ======================= */
.apply-main .visual {
  position: relative;
  width: 100%;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.apply-main .visual .bg {
  width: 100%;
}

.visual .sub-descript {
  position: absolute;
  width: 100%;
  margin-top: 24%;
  font-family: "GmarketSans";
  font-weight: normal;
  font-size: 25px; 
  line-height: 32px;
  text-align: center;   
  color: var(--color-white);
}
.visual .sub-descript .sub-title {
  color: var(--color-primary);
  font-weight: bold;
}
.visual .sub-descript .sub-title .date {
  display: block;
  color: var(--color-white);
  font-weight: 400;
}
#teen .visual .sub-descript .sub-title {
  color: #FFD900;  
}
.visual .sub-descript .date {
  margin-top: 10px;
}

/* ======================= section ========================= */

.content-section {
  width: 100%;
  margin-top: 50px;
}
.sub-top-title img {
  border-radius: 15px;
}

.step-label {
  display: flex;
  gap: 10px; 
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.step-label .step {
  display: block;
  width: 20px;
  height: 20px; 
  border: 1px solid var(--color-point);
  border-radius: 20px;
}
#teen .step-label .step {
  border: 1px solid var(--color-primary-2);
}
.step-label .step.active {
  background: var(--color-point);
}
#teen .step-label .active {
  background: var(--color-primary-2);
}

.info-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  width: 100%;
  max-width: 956px;
  margin: 0 auto
}
.info-message .img-object {  
  width: 80px;
  height: 108px;
  background-image: url('../img/common/icon-object.png');
  background-repeat: no-repeat;
}
#teen .info-message .img-object {
  background-image: url('../img/common/icon-object-teen.png');  
}
.info-message .box-wrap{
  flex: 1;
  padding-left: 16px;
}
.info-message .message-box {
  display: flex;  
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 85px;
  background: var(--color-primary); 
  border-radius: 45px;
  font-size: 20px;
  font-weight: 500;  
  line-height: 24px;  
  border-radius: 50px;  
}
.info-message .message-box .mo {
  display: none;
}
#teen .info-message .message-box {
  background: #FFE8FA;
}
.info-message .message-box::before {
  content: "";
  width: 16px;
  height: 18px;
  position: absolute;
  left: -14px;
  top: calc(50% - 9px);
  background: url('../img/common/messagebox-left-icon.png') no-repeat;
}
#teen .info-message .message-box::before {
  background: url('../img/common/messagebox-left-icon-teen.png') no-repeat;  
}

/* ======== form ========*/
 
.submit-form {
  padding: 0 180px;
  margin-top: 50px;
}
.form-list {
  width: 100%;  
}
.form-item {
  margin-top: 30px;
  letter-spacing: -1px;
}
.form-item:first-child {
  margin-top: 0;
}
.form-item.fix-item {
  margin-top: 0;
}
.form-wrap {
 display: flex; 
 min-height: 50px;
 align-items: flex-start;

}
.form-head {
  display: flex;
  align-items: center;
  min-width: 180px;
}
.form-name {
  font-size: 22px;
  font-weight: bold;
  line-height: 26.4px;
  padding: 12px 0px;
  
}
.form-body {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
}
.form-area {
  display: flex;
  align-items: center;
  flex: 1 1 100%;
  position: relative;
}
.form-item .form-area {
  min-height: 50px;
}
.form-area .form {
  width: 100%;
}
.blind {
  position: absolute;
  margin: -.1rem;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);  
}
.form-elem {
  width: 100%;
  height: 50px;
  padding: 13.8px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  color: var(--color-gray-1);
  letter-spacing: -0.2px;
  border: 1px solid #525252;
  border-radius: 15px;
  background-color: #F6F6F6;
  outline: none;
}

.form-elem::placeholder {
  color: var(--color-gray-2);
}
.select-box {
  width: 100%;
}

.form-elem .select {
  background: var(--color-white);
  color: var(--color-gray-2); 
}

.form-info {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: normal;
  color: var(--color-gray-7);
  margin-top: 4px;
}

.checkbox-type {
  display: inline-block;
  margin-top: 10px;
}
.checkbox-type.type-big span {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
}

/* ======================= survay ======================= */


h2 .line {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.item-wrap.type-grid .item-line:nth-child(1) {
  order: 1 !important;
}
.item-wrap.type-grid .item-line:nth-child(2) {
  order: 2 !important;
}
.item-wrap.type-grid .item-line:nth-child(3) {
  order: 3 !important;
}
.item-wrap.type-grid .item-line:nth-child(4) {
  order: 4 !important;
}
.item-wrap.type-grid .item-line:nth-child(5) {
  order: 5 !important;
}
.item-wrap.type-grid .item-line:nth-child(6) {
  order: 6 !important;
}
.item-wrap.type-grid .item-line:nth-child(7) {
  order: 7 !important;
}

.survey-container .form-item {
  margin-top: 50px;
}
.survey-container .view-wrap {
  display: flex;
  padding: 0px 10px;
} 
.survey-container .view-wrap .item-wrap {
  width: auto;
  padding: 0;
} 
.survey-container .item-wrap {
  width: 100%; 
  padding: 0px 10px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.survey-container .item-wrap.type-column {
  flex-direction: column;
}
.survey-container .item-wrap.item-full {
  padding: 0px;
  overflow: hidden;
  border-radius: 15px;
}
.item-wrap .item-line {  
  width: 325px;
  padding: 10px 0;
  margin-left: 10px;
  align-items: center;
}
.view-wrap .item-wrap.type-column .item-line {
  width: 325px;
}
.item-wrap.type-column .item-line {
  width: 100%;
}
.survey-container .checkbox-type {
  margin-top: 0;
}
.survey-container .checkbox-type span {
  font-size: 18px;
  line-height: 21.6px;
  color: var(--color-gray-1);
}
.survey-container .check-all-agree .checkbox-type span {
  font-size: 22px;
}
.survey-container .radio-labele {
  line-height: 21.6px;
}
.radiobox-type .radio {
  margin: 0;
}

.radiobox-type .radio + .radio {
  margin-left: 50px;
}

.etc-input-wrap {
  margin-top:20px;
}

.description {
  width: 100%;
  background: #F6F6F6;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.description span {    
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-gray-7);
}

/* ================= noticebox =======================*/
.cont {
  margin-top: 30px;
}
.content-title-medium {
  display: flex;
  align-items: center;
}
.content-title-medium .essential {
  padding: 3px 20px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 17px;
  background: #FF5300;
  color: var(--color-white);
  text-align: center;
  margin-left: 10px;

}
.info-box-wrap {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #F6F6F6;
  padding-right: 20px;
  position: relative;  
  height: 180px; 
  margin-top: 10px;
}

.info-box-wrap.small {
  height: 62px;
}

.notice-box {
  height: 100%;
  padding: 14px 20px;
  background: #F6F6F6;
  font-size: 14px;
  overflow-y: auto;
  box-sizing: border-box; 
  margin-right: -15px; 
  line-height: 17px;
  color: var(--color-gray-1);
}
.notice-box::-webkit-scrollbar {
  width: 5px;
}

.notice-box::-webkit-scrollbar-thumb {
  background-color: rgba(163, 163, 163, 1);
  border-radius: 5px; 
}

.notice-box::-webkit-scrollbar-corner {
  background: transparent;
}

.notice-box strong {
  display: block;
  font-weight: normal;
  margin-top: 20px;
  color: #000;
}
.notice-box ul li {
  padding-left: 3px;
}
.item-line.align-r {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.box-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.box-wrap.w-small {
  max-width: 888px;
  margin: 0 auto;
}
.img.finish-object {
  width: 720px;
  height: 251px;
  background-image: url(../img/common/finish-object.png);
  background-repeat: no-repeat;
}
#teen .img.finish-object {
  background-image: url(../img/common/finish-object-teen.png);
  background-repeat: no-repeat;
}
.box-wrap .txt-box {
  width: 100%;
  padding: 40px 44px;
  text-align: center;
}
.box-wrap .txt-box.type-primary {
  background: rgba(255, 216, 0, 0.25);
  border-radius: 20px;
}
.box-wrap .txt-box .title {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
}
.box-wrap .txt-box .txt {
  font-size: 20px;
  line-height: 28px;
  font-weight: normal;
  margin-top: 30px;
}
.box-wrap .txt-box .txt .mo {
  display: none;
}
.box-wrap .txt-box .txt strong {
  font-weight: bold;
}
.box-wrap .txt-box .txt p {
  margin-top: 20px;
}
.box-wrap .txt-box .txt .link-point {
  color: #FF5300;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;  
  font-weight: bold;
}

/* table */
.table-box {
  margin-top: 30px;
}
.table-box .form-info {
  margin-top: 0;
  margin-bottom: 8px;
  text-indent: 10px;
}
.table-container {
  width: 100%;
  overflow-x: auto;
  border-radius: 15px;
  overflow: hidden;
}
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 16px;
  text-align: left;  
  border-radius: 15px;
  background-color: #F6F6F6;
}

.responsive-table th, .responsive-table td {
  padding: 8px 10px;
}

.responsive-table thead th {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  background-color: var(--color-gray-2);
  color: var(--color-white);
  text-align: center;
}
.responsive-table th, .responsive-table td {
  text-align: center;
  padding: 8px;
}
.responsive-table td {
  font-size: 13px;
  font-weight: 700;  
  color: #525252;
}
.responsive-table td span {
  font-weight: 500;
}

footer {
  width: 100%; 
  padding: 19px 0px;
  margin-top: auto;  
  background-color: var(--color-gray-2);
  font-family: "GmarketSans";
  font-weight: 400;
  font-size: 12px;
  line-height: 15.6px;  
}
footer .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
footer .copy {
  color: var(--color-white);
  line-height: 22px;
}
footer .terms a {
  color: var(--color-white);
  display: block;
  width: 113px;
  height: 22px;
  border-radius :5px;
  border: 1px solid #fff;
  padding: 3px 10px;
}

.popup-wrap {
  display: none; /* 처음에는 팝업이 보이지 않도록 함 */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
}

.popup-wrap.is-active {
  display:flex
}

.popup {
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  border-radius: 15px;
  text-align: center;
}

.popup-content {
  padding: 75px 50px;
  background: var(--color-white);
}

.popup-description {
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  word-break: break-word;
}

.popup-footer {
  display: flex;
}

.popup-footer .btn {
  flex: 1;
  height: 85px;
  font-family: "GmarketSans";
  font-size: 25px;
  line-height: 85px;
}

.popup-footer .btn-gray {
  background: var(--color-gray-7);
  color: var(--color-white);
}
/*========privacy===========*/
.cont-title .title {
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.1px;
  text-align: center;
}
.policy-box {
  width: 640px;
  margin: 50px auto 0;
  letter-spacing: 0;
  word-break: break-all;
  color: #0D0D0D;  
}
.policy-box div {
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  color: #0D0D0D;
}
.policy-box dl dt {
  margin: 30px 0 5px;
  font-size: 14px;
  font-weight: 800;
  color: #0D0D0D;
}
.policy-box dl dd {
  font-size: 12px;
  font-weight: 500;
  color: #0D0D0D;
}
.policy-box strong {
  display: block;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 700;
}
.policy-box p {
  margin-top: 10px;
}
.policy-box ul {
  margin: 15px 0px;
}
.policy-box table {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  border-top: 1px #000 solid;
  border-left: 1px #000 solid;
  border-right: 1px #000 solid;
}
.policy-box table th {
  padding: 8px 10px;  
  background-color: rgba(0, 0, 0, 0.1);
  color: #0D0D0D;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}
.policy-box table td {
  padding: 8px 10px;
}
.policy-box table th,
.policy-box table td {
  border-bottom: 1px #000 solid;
}
.policy-box table th + th,
.policy-box table td + td {
  border-left: 1px #000 solid;
}

/*============= Tablet & Mobile =============*/

@media screen and (max-width: 1024px)  {
  body {
    overflow-x: hidden;
  }

  h2 {
    font-size: 14px;
    line-height: 16.8px;    
  }

  h2 .line {
    text-underline-offset: 2px;
  }

  .btn-wrap .btn {
    width: 102px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
  }
  .btn-wrap .btn.btn-big {
    width: 200px; 
  }
  .container {
    padding: 0 0 20px;
  }
  .bot-inner {
    padding: 0 10px;
  }
  .apply-main .visual {
    height: auto;
    border-radius: 0;
  }
  .apply-main .visual .bg img {
    width: 100%;
  }
  .visual .sub-descript {
    margin-top: 31%;
  }
  .visual .sub-descript .sub-title {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;    
    transform: translate(-50%, -50%);
    font-size: 5vw; 
    line-height: 0.9em;
  }
  .visual .sub-descript .sub-title .date {
    font-size: 3.5vw; 
    margin-top: 1vw;
  }
  .apply-main .link-btn-wrap {
    justify-content: center;
    width: 100%;
    gap: 24px;
    margin-top: 30px;
  }

  .main-btn-wrap .btn-big {
    font-size: 20px;
  }

  .main-btn-wrap .btn-object {
    height: 100px; 
    font-weight: normal;
    overflow: hidden;
  }
  .main-btn-wrap .btn-object .btn-image {
    width: 100px;  
    height: 100%;
    margin-right: 27px; 
    background-position-y: 15px;   
    flex-shrink: 0;  
  }
  .main-btn-wrap .btn-object .btn-text {
    margin-right: 16vw;
    white-space: nowrap;
  }

  .main-btn-wrap .btn-normal {
    height: 50px;
    font-size: 16px;
    border-radius: 8px;
    display: block;
    text-align: center;
    line-height: 53px;
  }

  .main-btn-wrap {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }

  .main-btn-wrap .l-wrap {
    flex: none;
    width: 100%;
  }

  .main-btn-wrap .r-wrap {
    flex-direction: initial;
    gap: 10px;
  }

  .content-section {
    margin-top: 20px;
  }

  .submit-form {
    margin-top: 20px;
  }
  .sub-top-title {
    width: 100%;
  }
  .sub-top-title img {
    width: 100%;
    border-radius: 0;
  }
  .step-label {    
    gap: 5px;     
    margin-top: 10px;
  }  
  .step-label .step {    
    width: 12px;
    height: 12px; 
  }
  .info-message {
    align-items: flex-start;
    max-width: 100%;
    padding: 0 15px;
  }

  .info-message .img-object {
    width: 60px;
    height: 80px;
    background-size: cover;
  }

  .info-message .message-box {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 60px;
    padding: 9px 10px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: normal;
    line-height: 16.8px;
    text-align: center;
  }
  .info-message .message-box strong {
    font-weight: bold;
    display: contents;
  }

  .info-message .message-box::before {
    top: 22px;
  }
  .info-message .message-box .mo {
    display: block;
  }
  .info-message .message-box .mo-no {
    display: none;
  }  
  .link-btn-wrap .link-btn {
    width: 42px;
    height: 42px;
  }

  .submit-form {
    padding: 0 20px;
  }

  .form-head {
    min-width: 80px;
    min-height: inherit;
    padding-right: 5px;
    height: 36px;
  }

  .form-name {
    padding: 0;
    font-size: 14px;
    line-height: 16.8px;
  }

  .form-area {
    font-size: 14px;
  }

  .form-info {
    font-size: 12px;
    line-height: 14.4px;
  }

  .form-item {
    margin-top: 20px;
  }

  .description span {
    font-size: 14px;
    line-height: 16.8px;
    margin-top: 3px;
  }
  .description span:first-child {
    margin-top: 0px;
  }

  .btn-wrap {
    gap: 10px;
    margin-top: 50px;
  }

  .form-wrap {
    min-height: 30px;
  }

  .form-elem {
    height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px; 
  }

  .form-item .form-area {
    min-height: 30px;
  }

  .textarea {
    height: 120px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 16.8px;
  }
  textarea.textarea::-webkit-scrollbar {
    width: 5px; 
    height: 8px;
  }
  textarea.textarea::-webkit-scrollbar-thumb {
      background-color: rgba(163, 163, 163, 1);
      border-radius: 15px; 
  }
  

  .checkbox-type span {
    font-size: 14px;
    line-height: 16.8px;
  }

  .checkbox-type span.txt-small {
    font-size: 12px;
    line-height: 14.4px;
  }

  .checkbox-type span::before,
  .radio-label::before {
    top: calc(50% - 6px);
    background-size: 26px auto;
    width: 12px;
    height: 12px;
  }

  .item-line .radio-label::before {
    top: calc(50% - 6px);
  }

  .checkbox-type input[type="checkbox"]:checked ~ span::before,
  input:checked + .radio-label::before{
    background-position: -15px 0;
  }

  .checkbox-type span,
  .radio-label {
    padding-left: 15px;
  }

  .checkbox-type.type-big span {
    padding-left: 15px;
    font-size: 12px;
    line-height: 14px;
  }

  .radiobox-type .radio + .radio {
    margin-left: 30px;
  }
  .etc-input-wrap {
    margin-top:12px;
  }
  .select-box::after {
    width: 10px;
    height: 15px;
  }
  .item-wrap.type-grid {
    display: grid; 
  }

  .item-wrap .item-line {
    width: 100%;
    padding: 0;
    margin-left: 0;
  }
  .item-wrap.type-grid .item-line:nth-child(odd) {
    order: initial !important;
  }

  .item-wrap .item-line:not(:first-child) {
    margin-top: 6px;
  }
  .survey-container .check-all-agree .checkbox-type span {
    font-size: 18px;
    line-height: 20px;
  }
  .survey-container .checkbox-type span,
  .radio-label {
    font-size: 14px;
    line-height: 16.8px;
  }
  .cont {
    margin-top: 20px;
  }
  .content-title-medium .essential {
    font-size: 12px;
  }

  .survey-container .item-wrap {
    margin-top: 18px;
  } 
  .survey-container .item-wrap.item-full {
    border-radius: 12px;
  }
  .survey-container .view-wrap .item-wrap:nth-child(2) {
    margin-top: 6px;
  }

  .survey-container .form-item {
    margin-top: 30px;
  }
  .survey-container .view-wrap {
    flex-direction: column;
  } 
  .survey-container .form-item:first-of-type {
    margin-top: 20px;
  }
  .notice-box {
    font-size: 12px;
    line-height: 14.8px;
  }

  .img.finish-object {
    width: 260px;
    height: 90px;
    background-size: 100%;
    background-size: contain;
    margin-top: 50px;
  }

  .box-wrap.w-small {
    max-width: 100%;
    padding: 0 20px;
  }

  .box-wrap .txt-box.type-primary {
    border-radius: 8px;
    padding: 15px; 
  }

  .box-wrap .txt-box .title {
    font-size: 14px;
    line-height: 16.8px;
  }

  .box-wrap .txt-box .txt {
    font-size: 14px;
    line-height: 19.6px;
    margin-top: 11px;
  }
  .box-wrap .txt-box .txt .mo {
    display: block;
  }
  .cont-title .title {
    font-size: 25px;    
    line-height: 35px;
  }
  .policy-box {
    width: 100%;
    padding: 0 10px 20px 10px;
    margin: 25px auto 0;
    letter-spacing: 0;
    color: #0D0D0D;  
  } 
  /* table */ 
  .responsive-table thead th {
    font-size: 16px;
    line-height: 24px;
  }  
  .responsive-table th, .responsive-table td {
    text-align: center;
    padding: 6px;
  }

  footer {
    padding: 20px 22px 20px;
  }

  footer .inner {
    flex-direction: column-reverse;
    align-items: initial;
    row-gap: 6px;
  }

  .popup-wrap {
    padding: 20px;
  }

  .popup {
    max-width: 350px;
  }
  
  .popup-content {
    padding: 30px 20px;
  }

  .popup-description {
    font-size: 15px;
    line-height: 22px;
  }
  
  .popup-footer .btn {
    height: 55px;
    font-size: 15px;
    line-height: 55px;
  }
}

@media screen and (max-width: 360px) {
  .main-btn-wrap .btn-object .btn-image {
    width: 76px;
    margin-right: 11px;
  }
  .main-btn-wrap .btn-object .btn-text {
    margin-right: 12vw;
  }
}