/* ===========================================
   서울 국제 AI 필름 페스타 - 메인 스타일시트
   =========================================== */

/* ===========================================
폰트 임포트
=========================================== */
@import url("//font.imbc.com/noto/noto.css");
@import url("//font.imbc.com/mbcnew/mbcnew.css");
@import url("//font.imbc.com/pretendard/pretendard.css");


/* ===========================================
   CSS 변수 정의
   =========================================== */
:root {
  /* 색상 변수 */
  --color-primary: #f1a1ff;
  --color-primary-dark: #e761ff;
  --color-secondary: #ffffa5;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #8c8c8c;
  --color-gray-dark: #444444;
  --color-gray-border: #d6d6d6;
  --color-gray-text: #6d6d6d;
  --color-table-header: #2f3332;
  --color-table-border: #444444;
  
  /* 폰트 변수 */
  --font-primary: 'notokr-regular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-bold: 'notokr-bold', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mbc-light: 'mbcnew-light', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mbc-bold: 'mbcnew-bold', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* 레이아웃 변수 */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-small: 4px;
  
  /* 간격 변수 */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* 그림자 변수 */
  --shadow-light: rgba(0, 0, 0, 0.15) 0px 4px 22px;
  --shadow-modal: 0 5px 15px rgba(0,0,0,0.3);
}

/* ===========================================
   기본 스타일 (Base Styles)
   =========================================== */
html {
  width: 100%;
  letter-spacing: -0.05rem;
  color: var(--color-white);
  font-size: 100%;
  text-size-adjust: 100%;
  background-color: var(--color-black);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================================
   접근성 (Accessibility)
   =========================================== */
#accessibility {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  text-align: left;
}

#accessibility a {
  display: block;
  position: absolute;
  top: -1000px;
  left: 0;
  z-index: 500;
  width: 100%;
  text-align: center;
  outline-offset: -1px;
}

#accessibility a:focus,
#accessibility a:active {
  position: absolute;
  top: 0;
  z-index: 1000;
  height: 40px;
  background: var(--color-black);
  font: bold 12px / 2.5rem dotum;
  color: var(--color-white);
}

/* ===========================================
   유틸리티 클래스 (Utility Classes)
   =========================================== */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ellipsis2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow-wrap: break-word;
  -webkit-line-clamp: 2;
  display: -webkit-box !important;
}

.ellipsis3 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow-wrap: break-word;
  -webkit-line-clamp: 3;
  display: -webkit-box !important;
}

.blind {
  display: block;
  overflow: hidden;
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  font-size: 1px;
  color: transparent;
}

/* ===========================================
   헤더 (Header)
   =========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: var(--header-height);
  line-height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
}

header .wrap {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

header .nav-logo {
  display: inline-block;
  width: 74px;
  height: 21px;
  text-indent: -9999px;
  background: url("../images/logo-sgaff-b.png") no-repeat;
  vertical-align: middle;
}

header nav ul {
  display: flex;
}

header nav ul li {
  margin: 0 32px;
  position: relative;
}

header nav ul li::after {
  position: absolute;
  top: 30px;
  right: -33px;
  display: block;
  content: "";
  width: 1px;
  height: 18px;
  background: rgb(178, 178, 178);
}

header nav ul li:last-child::after {
  background: none;
}

header nav ul li.on {
  background-color: var(--color-black);
}

header nav ul li a {
  font-weight: 500;
  color: var(--color-black);
  font-family: var(--font-bold);
}

header .lang {
  display: inline-block;
  margin-left: 10px;
  font-weight: 500;
  color: var(--color-black);
  font-family: var(--font-bold);
}

/* ===========================================
   애니메이션 (Animations)
   =========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================================
   메인 비주얼 (Main Visual)
   =========================================== */
.intro-wrap {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  background: url("../images/bg-main.jpg") center top / cover no-repeat;
  flex-wrap: wrap;
  place-content: center;
}

.intro-wrap .main-logo {
  width: 100%;
  text-align: center;
  margin-top: 2.5vw;
  margin-bottom: 2.5vw;
  opacity: 0;
  animation: 1s ease-out 0.1s 1 normal forwards running fadeUp;
}

.intro-wrap .logo-sgaff {
  max-width: 719px;
  width: 37.743%;
  min-width: 520px;
}

.intro-wrap .top-logo ul {
  display: flex;
  margin-bottom: 3vw;
  align-items: center;
  justify-content: center;
}

.intro-wrap .top-logo li {
  position: relative;
  padding-right: 20px;
  margin-right: 10px;
}

.intro-wrap .top-logo li img {
  vertical-align: middle;
}
.intro-wrap .top-logo li:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../images/ico-x.png") right center / 12px no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}

.intro-wrap .top-logo .logo-mbc {
  width: 137px;
}

.intro-wrap .top-logo .logo-seoul {
  width: 160px;
  margin-top: -0.6rem;
}

.intro-wrap .top-logo .logo-sc {
  width: 268px;
  padding: 0 0.3rem;
}

.intro-wrap .top-logo li:last-child {
  margin-right: 0;
  padding: 0;
}

.intro-wrap .top-logo li:last-child::after {
  background: none;
}

.intro-wrap .sub-txt {
  opacity: 0;
  animation: 1s ease-out 0.4s 1 normal forwards running fadeUp;
  text-align: center;
  padding: 0 20px 50px;
  font-family: var(--font-mbc-light);
}

.intro-wrap .sub-txt .title {
  color: var(--color-secondary);
  font-size: 3.5rem;
  font-weight: 600;
}

.intro-wrap .sub-txt .sub-tit {
  font-size: 1.8rem;
  color: var(--color-white);
  text-align: center;
}

/* ===========================================
   섹션 공통 스타일 (Section Common Styles)
   =========================================== */
.section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  margin: 0 auto 50px;
  font-size: 28px;
  width: 395px;
  height: 62px;
  line-height: 62px;
  font-family: var(--font-bold);
  color: var(--color-white);
  font-weight: normal;
  text-align: center;
  border-radius: 30px;
  background-color: var(--color-primary);
}

/* ===========================================
   행사소개 섹션 (Intro Section)
   =========================================== */
.notice-wrap {
  margin-top: -80px;
  padding-top: 100px;
  padding-bottom: 151px;
  background: url("../images/bg-h1.jpg") center bottom no-repeat var(--color-white);
  background-size: 100% 150px;
  color: var(--color-black);
}

.intro-contents {
  text-align: center;
  font-family: var(--font-mbc-light);
  max-width: 960px;
  margin: 0 auto;
}

.intro-title {
  padding-top: 20px;
  font-family: var(--font-mbc-bold);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.intro-title span {
  color: var(--color-primary-dark);
}

.intro-sub {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.intro-sub .slogan {
  display: inline-block;
  margin-bottom: 0.6rem;
}

.intro-sub .icon-mbc {
  display: inline-block;
  width: 66px;
  height: 20px;
  background: url("../images/icon-mbc.png") no-repeat;
  text-indent: -9999px;
  vertical-align: middle;
}

/* ===========================================
   카드 섹션 (Cards Section)
   =========================================== */
.intro-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: var(--font-mbc-light);
}

.intro-card {
  width: 31%;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: var(--shadow-light);
  text-align: center;
}

.intro-card .card-divider {
  width: 30px;
  height: 1px;
  background: rgb(221, 221, 221);
  margin: 1rem auto;
  border-radius: 1px;
}

.intro-card .card-icon img {
  margin-bottom: 15px;
}

.intro-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.intro-card .card-title span {
  display: block;
  font-weight: 400;
  font-size: 1rem;
  color: rgb(102, 102, 102);
}

.intro-card .card-text {
  font-size: 1rem;
  line-height: 1.7;
}

.intro-card .card-text strong {
  font-weight: 600;
}

.intro-mid {
  font-family: var(--font-mbc-light);
  margin: 65px auto 40px;
  text-align: center;
  font-size: 1.5rem;
}

.intro-bottom {
  padding-bottom: 40px;
  text-align: center;
  line-height: 2;
}

.highlight-title {
  display: inline;
  font-family: var(--font-mbc-bold);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.highlight-title::after {
  content: "";
  position: absolute;
  left: -1%;
  bottom: 0;
  width: 102%;
  height: 1rem;
  background: var(--color-primary);
  opacity: 0.5;
  z-index: -1;
}

.intro-bottom-desc {
  font-size: 1.5rem;
  font-family: var(--font-mbc-light);
  line-height: 1.6;
}

.intro-bottom-desc .small {
  font-size: 0.875rem;
  display: block;
  margin-top: 8px;
}

/* ===========================================
   정보 리스트 (Info List)
   =========================================== */
.section .info-list {
  font-size: 1.375rem;
  line-height: 2;
}

.section .info-list > li {
  display: flex;
  padding-bottom: 20px;
}

.section .info-list .label {
  display: block;
  width: 328px;
  margin-right: 0;
  padding-left: 25px;
  background: url("../images/ico-bullet.png") left top no-repeat;
  font-size: 1.375rem;
  word-break: auto-phrase;
}

.section .info-list .label.type2 {
  width: 100%;
  word-break: keep-all;
}

.section .info-list .label.type3 {
  width: 260px;
  margin-right: 70px;
}

.section .info-list strong {
  font-family: var(--font-bold);
  font-weight: normal;
}

.section .info-list .sub-list li {
  margin-bottom: 30px;
  line-height: 2.25rem;
}

.section .info-list .sub-list li .txt {
  padding-left: 0.7rem;
}

.section .info-list .desc {
  width: 100%;
}

.black-wrap .section .info-list .label {
  background: url("../images/ico-bullet2.png") left top no-repeat;
}

/* ===========================================
   검은 배경 섹션 (Black Background Section)
   =========================================== */
.black-wrap {
  background: url("../images/bg-h2.jpg") center bottom no-repeat;
  background-size: 100% 108px;
  padding-top: 90px;
  padding-bottom: 154px;
  margin-top: -71px;
  margin-bottom: 40px;
}

.black-wrap h2 {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* ===========================================
   텍스트 유틸리티 (Text Utilities)
   =========================================== */
.txt-left {
  float: left;
  display: inline-block;
  width: 15px;
}

.txt-right {
  display: inline-block;
  width: calc(100% - 15px);
  padding-left: 8px;
}

.section .small {
  font-family: var(--font-primary);
  display: block;
  font-size: 1.25rem;
  color: var(--color-gray-medium);
}

/* ===========================================
   테이블 스타일 (Table Styles)
   =========================================== */
.wrap-table {
  width: 100%;
  text-align: center;
}

.field-table {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-collapse: collapse;
  color: var(--color-white);
  font-family: var(--font-primary);
}

.inner-table td strong {
  font-family: var(--font-mbc-bold);
  font-size: 1.2rem;
}

.field-table.type2 {
  margin-bottom: 0;
}

.field-table.type2 th,
.field-table.type2 td {
  padding: 0.5rem;
  font-size: 1rem;
  text-align: center;
}

.field-table.type2 .small {
  font-size: 1rem;
}

.field-table.type2 strong {
  color: var(--color-secondary);
}

.field-table th {
  padding: 0.85rem;
  border: 2px solid var(--color-black);
  text-align: center;
  line-height: 2rem;
  background: var(--color-table-header);
  border-top: 0;
  font-weight: bold;
}

.field-table td {
  border: 1px solid var(--color-table-border);
  padding: 0.85rem;
  line-height: 2rem;
  word-break: keep-all;
}

.field-table tr td:first-child {
  text-align: center;
  word-break: keep-all;
}

.field-table th:first-child,
.field-table td:first-child {
  border-left: 0;
}

.field-table th:last-child,
.field-table td:last-child {
  border-right: 0;
}
.btn-link{display: inline-block;margin: 5px 0;line-height: 2rem;padding: 0 17px;border-radius: 5px;background:#282828;font-size: .9rem;}
/* ===========================================
   참가자격 섹션 (Entry Section)
   =========================================== */
.entry-wrap {
  color: var(--color-black);
  margin-top: -107px;
  padding-top: 90px;
  padding-bottom: 175px;
  background: url("../images/bg-h3.jpg") left bottom no-repeat var(--color-white);
  background-size: 100% 117px;
}

#guide.black-wrap {
  background: var(--color-black);
  padding-bottom: 0;
}

/* ===========================================
   버튼 스타일 (Button Styles)
   =========================================== */
.btn-submit {
  display: block;
  margin: 35px auto;
  width: 404px;
  height: 60px;
  line-height: 60px;
  font-size: 26px;
  font-family: var(--font-bold);
  text-align: center;
  color: var(--color-white);
  border-radius: var(--border-radius);
  text-decoration: none;
  background: url("../images/ico-submit.png") 67% center no-repeat var(--color-primary);
  padding-right: 15px;
}
.btn-download {
  display: block;
  margin: 35px auto;
  padding: 0 120px 0 100px;
  height: 60px;
  line-height: 60px;
  font-size: 26px;
  font-family: var(--font-bold);
  text-align: center;
  color: var(--color-white);
  border-radius: var(--border-radius);
  text-decoration: none;
  background: url("../images/ico-download.png") calc(100% - 83px) center no-repeat var(--color-primary);
}
/* ===========================================
   푸터 (Footer)
   =========================================== */
footer {
  padding: 80px 0;
  text-align: center;
  color: rgb(150, 150, 150);
}

/* ===========================================
   출품신청 폼 (Application Form)
   =========================================== */
.wrap-form {
  padding: 100px 0;
  background-color: var(--color-white);
  color: var(--color-black);
}

.wrap-form .form-info {
  margin-bottom: 30px;
  font-size: 1.2rem;
  padding: 40px;
  background: var(--color-gray-light);
  text-align: center;
}

.wrap-form .input-row {
  display: flex;
  margin-bottom: 10px;
}

.wrap-form .input-row:last-child {
  margin-bottom: 0;
}

.wrap-form .input-row label {
  width: 86px;
  text-align: center;
}

.wrap-form .form {
  margin-bottom: 1.2rem;
}

.wrap-form .form .input-wrap {
  display: flex;
  margin-bottom: 10px;
}

.wrap-form .form .btn-link {
  margin-left: 11px;
  width: 180px;
  padding: 3px 25px;
  font-size: 1rem;
  border-radius: 5px;
  background: var(--color-gray-dark);
  color: var(--color-white);
}

.wrap-form .form .small {
  margin-top: 10px;
}

.wrap-form .form strong {
  display: block;
  margin-bottom: 5px;
}

.wrap-form .form input[type="text"],
.wrap-form input[type="email"],
.wrap-form input[type="number"] {
  height: 3.2rem;
  line-height: 3.2rem;
  width: 100%;
  padding: 0 0.8rem;
  box-sizing: border-box;
  border: 1px solid var(--color-gray-border);
  font-size: 1.1rem;
  font-family: var(--font-primary);
  border-radius: 5px;
}

.wrap-form .form textarea {
  width: 100%;
  padding: 0.2rem 0.8rem;
  height: 185px;
  box-sizing: border-box;
  border: 1px solid var(--color-gray-border);
  font-size: 1.2rem;
  font-family: var(--font-primary);
  border-radius: 5px;
}

.wrap-form .radio-group {
  display: flex;
  font-size: 1.2rem;
}

.wrap-form .radio-group label {
  margin-right: 18px;
  font-weight: normal;
}

.wrap-form .radio-group label input {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 3px;
  vertical-align: middle;
}

.wrap-form .inner-fields {
  position: relative;
}

.wrap-form .hidden {
  display: none;
}

.wrap-form .terms-box {
  font-size: 1.1rem;
  border: 1px solid var(--color-gray-border);
  padding: 1.5rem 2rem 2rem;
  color: var(--color-gray-text);
  border-radius: 5px;
  letter-spacing: -0.075rem;
  /* height: 1240px; */
}

.wrap-form .terms-box .title {
  font-size: 1.2rem;
  margin-bottom: 32px;
  text-align: center;
  font-family: var(--font-bold);
}

.wrap-form .s-txt {
  font-size: 1.2rem;
  line-height: 3rem;
}

.wrap-form .check {
  margin-top: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.075rem;
}

.wrap-form .check label {
  vertical-align: middle;
}

.wrap-form .check input {
  margin: 5px;
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
}

/* 동의서 아이템 스타일 */
.wrap-form .agreement-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-gray-border);
}

.wrap-form .agreement-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.wrap-form .agreement-item .btn-down {
  text-decoration:underline;
  /* color:#000; */
}

.wrap-form .agreement-item p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.wrap-form .agreement-item .check {
  margin-top: 1rem;
  padding-left: 1rem;
}

.wrap-form .field-table {
  color: var(--color-black);
  line-height: 1rem;
  font-size: 1.1rem;
}

.wrap-form .field-table th {
  padding: 0.5rem;
  color: var(--color-black);
  background: #d6d6d6;
}
.wrap-form .field-table td,.wrap-form .field-table th{border: 1px solid #d6d6d6;}
.wrap-form .field-table th:first-child, .wrap-form .field-table td:first-child{
    border-left: 0;
}
.wrap-form .field-table th:last-child, .wrap-form .field-table td:last-child{
    border-right: 0;
}
.wrap-form .field-table input {
  width: 100%;
}

/* ===========================================
   모달 (Modal)
   =========================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background: var(--color-white);
  padding: 0 30px;
  width: 80%;
  max-width: 800px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  box-shadow: var(--shadow-modal);
}

.modal-content h4 {
  font-size: 1.2rem;
  line-height: 4rem;
  font-family: var(--font-bold);
  font-weight: normal;
}

.modal-video {
  width: 100%;
  height: 410px;
  margin-bottom: 2rem;
}

.modal-close {
  position: absolute;
  top: -12px;
  right: 10px;
  background: none;
  border: none;
  font-size: 35px;
  color: #555;
  cursor: pointer;
  z-index: 10;
}

/* ===========================================
   반응형 스타일 (Responsive Styles)
   =========================================== */

/* 태블릿 (1024px 이하) */
@media (max-width: 1024px) {
  header .wrap {
    padding: 0 4%;
  }

  .section {
    padding: 0 4%;
  }

  .intro-wrap {
    height: auto;
    margin-top: -40px;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    background: url("../images/m-bg-main.jpg") center top / 100% 100% no-repeat;
  }

  .intro-wrap .main-logo {
    padding: 0 4%;
    margin-top: 11rem;
    margin-bottom: 2rem;
  }

  .intro-wrap .top-logo ul {
    margin-bottom: 2.5rem;
  }

  .intro-wrap .top-logo li {
    margin-right: 3px;
    padding-right: 13px;
    position: relative
  }

  .intro-wrap .top-logo ul li:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url("../images/ico-x.png") right center / 12px no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
  }

  .intro-wrap .top-logo .logo-seoul {
    width: 69px;
  }

  .intro-wrap .top-logo .logo-mbc {
    width: 60px;
  }

  .intro-wrap .top-logo .logo-sc {
    width: 130px;
  }

  .intro-wrap .logo-sgaff {
    width: 84%;
    min-width: 0;
  }

  .intro-wrap .sub-txt .title {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }

  .intro-wrap .sub-txt .sub-tit {
    font-size: 1.4rem;
  }

  .section .info-list {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }

  .section .info-list li {
    display: block;
  }

  .section .info-list .sub-list li {
    margin-bottom: 1.2rem;
    line-height: 2rem;
    padding: 0;
  }

  .section .info-list .sub-list li .txt {
    padding-left: 0.5rem;
  }

  .section .info-list .label {
    width: 100%;
    background-size: 6px;
    padding-left: 13px;
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .black-wrap .section .info-list .label {
    background-size: 6px;
  }

  .section .desc {
    display: block;
    width: 100%;
    padding-left: 16px;
  }

  .wrap-form .section .desc {
    padding: 0;
  }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {
  html {
    font-size: 80%;
    overflow-x: hidden;
  }

  header {
    height: 42px;
    line-height: 42px;
    background: var(--color-white);
  }

  header .wrap {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
    overflow: auto hidden;
    font-size: 1.1rem;
  }

  header h1,
  header nav,
  header .lang {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  header .nav-logo {
    margin-right: 5px;
    width: 37px;
    height: 16px;
    background: url("../images/logo-sgaff-b.png") no-repeat 0 0 / 37px;
  }

  header nav ul.nav {
    justify-content: space-between;
  }

  header nav ul li::after {
    background: none;
  }

  header nav ul.nav li {
    flex: 0 0 auto;
    margin: 0 10px;
  }

  .section h2 {
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    width: 200px;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 15px;
  }

  .intro-wrap .sub-txt .sub-tit {
    max-width: 306px;
  }

  .intro-sub .icon-mbc {
    width: 31px;
    height: 9px;
    margin-right: 2px;
    background: url("../images/icon-mbc.png") no-repeat center center / 31px;
  }

  .intro-desc .icon-mbc {
    display: inline-block;
    width: 34px;
    height: 12px;
    vertical-align: middle;
    background: url("../images/icon-mbc.png") no-repeat 0 0 / 32px;
  }

  .notice-wrap {
    margin-top: -3rem;
    padding: 2.5rem 0 2rem;
    background: url("../images/bg-h1.jpg") no-repeat bottom center / 100% var(--color-white);
  }

  .intro-cards {
    flex-direction: column;
  }

  .intro-card {
    width: 70%;
    margin: 0 auto 24px;
    padding: 25px;
    text-align: center;
  }

  .intro-card .c-ico1,
  .intro-card .c-ico2,
  .intro-card .c-ico3 {
    margin: 0 auto;
  }

  .intro-card .c-ico1 { width: 39px; }
  .intro-card .c-ico2 { width: 40px; }
  .intro-card .c-ico3 { width: 46px; }

  .intro-title {
    font-size: 2.4rem;
    letter-spacing: -0.1rem;
  }

  .intro-sub,
  .intro-desc,
  .intro-mid,
  .intro-bottom-desc {
    font-size: 1.1rem;
  }

  .intro-desc {
    margin-bottom: 45px;
  }

  .intro-mid {
    margin: 30px auto;
  }

  .highlight-title {
    font-size: 1.5rem;
  }

  .section .small {
    font-size: 1rem;
  }

  .black-wrap {
    margin-top: -1rem;
    padding: 4rem 0;
    background: url("../images/bg-h2.jpg") no-repeat bottom center / 100%;
  }

  .txt-right {
    padding-left: 2px;
  }

  .entry-wrap {
    margin-top: -4rem;
    padding: 4rem 0;
    color: var(--color-black);
    background: url("../images/bg-h3.jpg") no-repeat bottom left / 100% var(--color-white);
  }

  .wrap-table {
    overflow-x: scroll;
  }

  .wrap-table .field-table {
    width: 498px;
    font-family: var(--font-primary);
  }

  .field-table th {
    border: 1px solid var(--color-black);
  }

  .btn-submit {
    display: block;
    margin: 25px auto;
    width: 180px;
    height: 2.6rem;
    line-height: 2.6rem;
    font-size: 1.1rem;
    color: var(--color-white);
    border-radius: var(--border-radius-small);
    padding-right: 15px;
    text-decoration: none;
    background: url("../images/ico-submit.png") no-repeat 70% center / 10px var(--color-primary);
  }  
  .btn-download {
    display: block;
    margin: 25px auto;
    padding: 0 40px 0 25px;
    height: 2.6rem;
    line-height: 2.6rem;
    font-size: 1.1rem;
    color: var(--color-white);
    border-radius: var(--border-radius-small);
    text-decoration: none;
    background: url("../images/ico-download.png") no-repeat calc(100% - 23px) center / 10px var(--color-primary);
  }

  /* 출품신청 모바일 */
  .wrap-form {
    padding: 60px 0 30px;
    margin-bottom: 50px;
  }

  .wrap-form .form-info {
    padding: 22px 15px;
    font-size: 1.1rem;
  }

  .wrap-form .section .info-list > li {
    padding-bottom: 10px;
    margin-bottom: 1.4rem;
  }

  .wrap-form .section .info-list .label {
    font-size: 1.3rem;
    margin-bottom: 13px;
  }

  .wrap-form .form strong {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-bold);
    font-weight: normal;
  }

  .wrap-form .form .btn-link {
    margin-left: 10px;
    width: 150px;
    padding: 5px 12px;
  }

  .wrap-form .radio-group label {
    margin-right: 12px;
  }

  .wrap-form .field-table {
    width: 500px;
  }

  .wrap-form .terms-box {
    height: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
  }

  .modal-content {
    width: 92%;
    height: auto;
    padding: 0 15px 11px;
  }

  .modal-video {
    margin: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .modal-close {
    top: 11px;
    right: 12px;
    font-size: 30px;
  }

  footer {
    padding: 0 30px 50px;
  }
}

/* 초소형 기기 (360px 이하) */
@media (max-width: 360px) {
  .wrap-form .radio-group {
    flex-wrap: wrap;
  }

  .wrap-form .radio-group label {
    width: 100%;
    margin-bottom: 5px;
  }
}