@font-face {
  font-family: 'Pretendard-Regular';
  src: url('../fonts/Pretendard-Regular.woff') format('woff2'),
       url('../fonts/Pretendard-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard-Bold';
  src: url('../fonts/Pretendard-Bold.woff') format('woff2'),
       url('../fonts/Pretendard-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard-Light';
  src: url('../fonts/Pretendard-Light.woff') format('woff2'),
       url('../fonts/Pretendard-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}




/* 헤더 전체 영역 */

header {
  width: 100%;
  background-color: var(--main-color);

}

.header {
  position: fixed;
  width: 100%;
  z-index: 9999;
}

/* 언어영역 (ENG 버튼) */
.leng_eng {
  background-color: #fff;

}

.leng_eng div {
  text-align: right;
  font-size: 14px;
  cursor: pointer;
  margin: 0 auto;
/*  padding: 10px 20px;*/
  padding:10px 16px;
}

.leng_eng div a {
background-color: var(--main-color);
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
}

.globe_iocn {
  width: 18px;
  margin-right: 5px;
}

/* 헤더 안쪽 정렬 */
.header__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
}

/* 로고 영역 */
.header__logo-area .logo-list {
  display: flex;
  gap: 20px;
  align-items: center;
}

.logo-item_link img {
  height: 40px;
  display: block;
}

.logo-item_link > img:last-child {
	width:135px;
}

/* GNB 메뉴 */
.gnb .gnb-list {
  display: flex;
  gap: 40px;
  letter-spacing: 1px;
}

.gnb-item a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s ease;
}

/* .gnb-item a:hover {
  color: #0a7b4f; 
} */

.main-visual__video {
  display: flex;
}

.main-visual__video > video {
  width: 100%;
}

.main-visual__title {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.mid-banner > .mid-banner__image > img {
  width: 100%;
  display: block;
}

/* 중간 배너 텍스트 중앙 배치 */
.mid-banner {
  position: relative;
}

.mid-banner > .mid-banner__text {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: var(--main-color);
  padding: 0 16px;
}

.mid-banner > .mid-banner__text > .mid-banner__text-main {
/*  font-size: 35px;*/
  font-size: 42px;
  font-family: 'Pretendard-Bold';
}

.mid-banner > .mid-banner__text > .mid-banner__text-sub {
  font-size: 23px;
}

.menu-panel {
  background: url(../images/image/menu_bak_img.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;               
  justify-content: center;
}

.menu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 30, 78, 0.686); 
  z-index: 1;
}

.menu-panel > * {
  position: relative;
  z-index: 2; /* 오버레이 위로 올림 */
}

.menu-list > .menu-item > a > img {
  width: 66px;
  max-width: 100%;
}


.menu-panel__content {
  display: flex;                    
  justify-content: space-between;    
  align-items: center;
  max-width: 1200px;                 
  width: 100%;
   gap: 40px; 
}

/* 섹션 헤더 */
.menu-section__header {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  padding: 20px 0;
}

.menu-section__title {
/*  font-size: 30px;*/
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 4px;
}

.menu-section__subtitle {
  font-size: 15px;
  opacity: 0.8;
  letter-spacing: 4px;
  padding-top: 10px;
}

/* ✅ 내부 메뉴 리스트도 Grid로 정렬 */
.menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;
}

.menu-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.menu-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.menu-item p {
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.notice-header__title::before {
    content: url(../images/icon/volume_up.svg);
    vertical-align: middle;
}


.notice-panel {
/*    max-width: 1200px;  */
	max-width:1200px;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
}

.notice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted #ccc; /* 기존 스타일 유지 */
  padding: 6px 0; /* 위아래 여백 균일하게 */
}

.notice-item:last-child {
  border-bottom: none;
}



.notice-item__text {
    width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dotted #999;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.notice-header > .notice-header__title {
  font-weight: bold;
  font-size: 20px;
}

.notice-body {
  display: block !important;
  height: auto !important;
  min-height: unset !important;
}

.notice-item__tag {
  display: inline-block;
  width: 80px;
}

.notice-item__date {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    font-weight: lighter;
    display: inline-block;
    /* text-align: right; */
	 flex-shrink: 0;
}

.notice-list {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important; /* space-between 제거 */
  align-items: stretch !important;
  gap: 6px; /* 공지 간 세로 간격 (7개일 때와 비슷하게 맞춤) */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*.notice-list > .notice-item > a > .notice-item__text {*/
/*      width:70px;*/
/*      padding:0 5px;*/
/*      overflow:hidden;*/
/*      text-overflow:ellipsis;*/
/*      white-space:nowrap;*/
/*      display: inline-block;*/
/*}*/
/*
.notice-list > li {
	margin-bottom:4px;
}
*/
.more-btn {
  margin-top: 15px;
  border: 1px solid var(--main-color);
  text-align: center;
  width: 100%;
  padding: 5px 0;
  color: #000;
}

.more-btn > a {
  width: 100%;
  display: inline-block;
}

/*.sponsor-wrap {*/
/*  display: flex;*/
/*  justify-content: flex-start;*/
/*  gap: 6%;*/
/*}*/
/**/
/**/
/*.sponsor-panel {*/
/*  max-width: 1250px;*/
/*  margin: 0 auto;*/
/*  border-top: 1px solid #ccc;*/
/*  padding-top: 3%;*/
/*  padding-bottom: 3%; */
/*}*/
/**/
/*.sponsor-panel_list {*/
/*  display:flex;*/
/*  gap: 20px;*/
/*}*/
/**/
/*.sponsor-panel_ul{*/
/*  list-style: none;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  display: flex;*/
/*    align-items: flex-start;*/
/*}*/
/**/
/*.sponsor-panel_ul:first-child {*/
/* margin-bottom: 10px; */
/*}*/
/**/
/*.sponsor_title {*/
/*  margin-right: 10px;*/
/*  font-size: 15px;*/
/*  letter-spacing: 3px;*/
/*  font-weight: bold;*/
/*}*/
/**/
/*.sponsor-panel_ul > li:not(.sponsor_title) {*/
/*/*  width: 80px;*/
/*  margin: 0 5px;*/
/*}*/
/**/
/*.sponsor-panel_ul img {*/
/*  display: block;*/
/*  max-width: 100%;*/
/*  object-fit: contain;*/
/*  width: 100%;*/
/*  margin: 0px;*/
/*}*/
/**/
/*.logo_not {*/
/*  height: 40px; /* 다른 로고 높이에 맞게 조정 */
/*  object-fit: contain;*/
/*}*/

/* 전체 영역 */
.sponsor-panel.inner {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  font-family: 'Noto Sans KR', sans-serif;
}

/* 가로 배치 중심 구조 */
.sponsor-wrap {
/*  max-width: 1400px;*/
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 60px; /* 행, 열 간격 */
}

/* 각 그룹(주최/주관/후원/협찬/오피스) */
.sponsor-panel_list {
  display: flex;
  align-items: flex-start;
/*  gap: 80px;*/
}

/* 주최/주관/후원/협찬 묶음 */
.sponsor-panel_list > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 각 항목(타이틀+로고들) 수평 정렬 */
.sponsor-panel_ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 9px;
}

.sponsor-panel_ul .sponsor_title {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  white-space: nowrap;
}

.sponsor-panel_ul img {
  max-height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.sponsor-panel_ul img:hover {
  opacity: 0.85;
}

/* 가운데 구분선 */
.sponsor-wrap > div[style] {
  align-self: center;
}

/* Contact Us 영역 */
.office-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
/*  gap: 10px;*/
  min-width: 260px;
}

.contact_wrap {
  text-align: left;
}

.contact_text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.office-number {
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 8px;*/
  margin-top: 6px;
}

.office-number a {
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
  font-size: 15px;
  color: #000;
  text-decoration: none;
}

.office-number a:hover {
  text-decoration: underline;
}

.office_icon {
  width: 18px;
  height: 18px;
}

/* 반응형 */
@media (max-width: 1200px) {
  .sponsor-panel_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
  .sponsor-panel_ul {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .sponsor-wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .office-panel {
    text-align: center;
  }
}


.contact_wrap {
  color: var(--main-color);
}

.contact_wrap > .contact_text { 
  line-height: 20px;
    font-family: 'Pretendard-Bold';
}

.office-number > a > img {
  width: 17px;
  vertical-align: middle;
}

.office-number > a > span {
  font-size: 14px;
}

.office-number > a:last-child {
  margin-left: 10px;
}

footer {
  background-color: var(--main-color);
  color: #fff;
}

.footer__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    padding: 3% 0;
    justify-content: space-between;
}

.footer__inner > .footer_left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.footer__logo-left {
  width: 250px;
}

.footer_img {
  width: 100%;
}

.footer__info {
  font-size: 13px;
  letter-spacing: 1px;
}

.footer__info  > .footer__info-title {
  margin-bottom: 5px;
}

.footer_img_s {
  width: 20%;
  margin: 0;
}

.footer_img_2 {
  margin: 0;
  width: 40%;
  float: right;
}

.footer__logo-right {
/*  width: 100px;*/
  display: flex;
  align-items: flex-end;
}

.footer__info-box {
  display: flex;
  gap: 11px;
  align-item:center;
}

.footer__info-list, .notice-list {
  padding: 0;
  margin: 0;
}


/* 서브메뉴 */

.section-wrap {
  padding-top: 150px;
}

.overview {
  max-width: 1200px;
  margin: 2% auto;
  color: var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: end;
  justify-content: space-around;
}

.overview__info {
  width: 70%;
}

.overview__info > .overview__title {
  text-align: center;
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
    padding: 10px 0;
}

.overview dl {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 항목 간 간격 */
  margin: 1.5rem 0;
}

.overview dl > div {
  display: flex;
  flex-direction: row; /* 제목 위, 값 아래 */
}

.overview dt {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.overview dt:not(.not) {
  letter-spacing: 7px;
}

.overview dd {
  margin: 0 0 0 20px;
}

.overview__aside > .overview__image {
    border: 1px solid #222;
    padding: 10px;
    border-radius: 10px;
}

.overview__download {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  margin-top: 10px;
}

.overview__download > a {
  display: inline-block;
  width: 100%;
    display: inline-flex;              /* 아이콘+텍스트 정렬을 위해 flex 사용 */
  align-items: center;               /* 세로 중앙정렬 */
  gap: 6px;                          /* 아이콘과 텍스트 간격 */
  text-decoration: none;
      justify-content: center;
}


.overview__download > a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/expand_circle_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.intro-section__header {
  background: url(../images/image/sub-1_top.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 170px;
  position: relative;
}

.intro-section__header > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 4px;
}

.why-expo {
  background-color: var(--main-color);
  max-width: 1400px;
  margin: 5% auto 5% auto;
  border-radius: 10px;
}

.why-expo__header {
    text-align: center;
    padding-top: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.why-expo__header > img {
  width: 50px;
  margin: 0;
}

.why-expo__header > span {
  text-align: center;
  color: #fff;
  font-size: 30px;
  margin-left: 20px;
}

.why-expo__list {
  display: flex;
  justify-content: space-evenly;
  padding: 5% 0;
}

.why-expo__list > .why-expo__item {
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  width: 263px
}

.why-expo__list > .why-expo__item > img{
  width: 100%;
  text-align: center;
  border-radius: 20px;
}


.why-expo__list > .why-expo__item > .why-expo__label {
  padding: 20px 0;
  font-weight: bold;
  text-align: left;
  font-size: 20px;
}

.why-expo__list > .why-expo__item > .why-expo__text {
  font-size: 13px;
  color: #222;
  line-height: 1.5;
  text-align: left;
  padding-bottom: 13%;
}

.why-expo__label::after {
  content: "";
  display: inline-block;         
  width: 27px;                  
  height: 27px;                 
  background-image: url('../images/icon/arrow_circle_right_22dp.svg');
  background-size: cover;       
  background-repeat: no-repeat;
  vertical-align: middle;
  float: right;
}

.apply__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.apply__header > h2 {
    text-align: center;
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
    padding: 10px 0;
    margin-top: 20px;
}

.apply__content {
    margin:3% auto;
}

.apply__content > .apply__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 데스크탑: 4열 */
  gap: 2rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;

  @media (max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr); /* 태블릿: 2열 */
  }

  @media (max-width: 640px) {
    grid-template-columns: 1fr; /* 모바일: 1열 */
  }
}

.apply__content > .apply__steps > .apply__step {
  border: 2px solid var(--main-color);
  border-radius: 20px;
  padding: 5px;
  text-align: center;
}

.apply__content > .apply__steps > .apply__step > .apply__step-label {
  margin: 15px 0;
  font-size: 20px;
}

.apply__steps > .apply__step > .apply__step-icon {
  width: 30%;
  margin: 10px 0;
}

.apply__steps > .apply__step > .apply__step-title {
  color: #0e520e;
  font-weight: bold;
  margin-bottom: 25px;
}

.apply__steps > .apply__step > .apply__step-desc {
  color: var(--main-color);
  margin: 20px 0;
  line-height: 1.5;
}


.apply__notice {
  text-align: right;
  color: var(--main-color);
  font-size: 15px;
  font-family: 'Pretendard-Regular';
  margin: 20px 0;
}

.apply__download {
  display: block;
  text-align: center;
  margin: 5% auto;
  color: #fff;
}

.apply__download > a::before {
  content: url(../images/icon/expand_circle_right.svg);
  vertical-align: middle;
}

.apply__download > a {
  background-color: var(--main-color);
  padding: 13px 15px;
  border-radius: 7px;
}

.booth {
}

.booth > .booth__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.booth__image {
  width: 250px;
}

.booth__table {
  text-align: center;
  width: 100%;
}

.booth__table > tbody > .booth__row > .booth__cell {
  border: 1px solid #ccc;
  padding: 20px;
}

.booth__table > tbody > .booth__row > .booth__cell--title {
  background-color: var(--main-color);
  color: #fff;
}

.booth__table > tbody > .booth__row > .booth__cell > .booth__desc-text {
  font-size: 15px;
}

.booth__discount {
  margin: 5% auto;
  color: var(--main-color);
}

.booth__discount-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 1.5rem 1.5rem;
}

.booth__discount-list > div {
  display: flex;
  flex-direction: row; 
}

.booth__discount-list > .booth__discount-item > .booth__discount-term {
  font-weight: bold;
  width: 130px;
}

.booth__discount-list > .booth__discount-item > .booth__discount-desc {
  margin: 0;
}

.guide__intro-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin: 5% auto;
  align-items: center;
  border: 1px solid #ccc;
  padding: 20px 30px;
  border-radius: 10px;
}

.guide__intro-image {
    width: 70%;
    margin: 0 auto;
    display: block;
    text-align: right;
}

.guide__intro-image  > img {
  width: 85%;
}

.guide__intro-info > .guide__intro-list {
  display: flex;
  flex-direction: column;
  gap: 8px; 
  margin: 1.5rem 0;
  color: var(--main-color);
}

.guide__intro-info > .guide__intro-list > div {
  display: flex;
  flex-direction: row;
}

.guide__intro-info > .guide__intro-list > div > .guide__intro-term {
  width: 70px;
}

.guide__intro-info > .guide__intro-list > div > .guide__intro-desc{
  font-size: 0.9rem;
}

.guide__intro-buttons {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  max-width: 600px;
  margin: 0 auto;
  gap: 5rem;
}

.guide__intro-buttons > .guide__intro-btn {
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  padding: 13px 15px;
  border-radius: 5px;
}

.guide__intro-buttons > .guide__intro-btn::after {
  content: url(../images/icon/expand_circle_right.svg);
  vertical-align: middle;
}


.guide__info {
  max-width: 1200px;
  margin: 5% auto;
}

.guide__info > .guide__info-block  {
  color: var(--main-color);
}

.guide__info > .guide__info-block > h3::before {
  content: "";
  display: inline-block;         
  width: 27px;                  
  height: 27px;                 
  background-image: url('../images/icon/golf-flag.png');
  background-size: cover;       
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px; 
  vertical-align: bottom;
}

.guide__info_text{
  display: inline-flex;
  align-items: center;
}

.guide__info_text::after {
  content: "";
  display: inline-block;         
  width: 25px;                  
  height: 25px;                 
  background-image: url('../images/icon/keyboard_double_arrow_right.svg');
  background-size: cover;       
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}


.guide__info-list > .guide__info-item {
  line-height: 2;
}

.companylist {
  max-width: 1200px;
  border-radius: 10px;
  margin: 5% auto;
  background-color: #2945a121;
  text-align: center;
  padding: 3% 0;
}

.company_list > .company_list__item--logo > img {
  width: 250px;
  margin: 20px 0;
}

.company_list  > .list__item--title {
  margin: 20px 0;
}

.company_list > .list__item--desc {
  color: var(--main-color);
  font-size: 20px;
  padding: 20px;
}

.board {
  max-width: 1200px;
  margin: 5% auto;
}

.board > .board__table {
  width: 100%;
  text-align: center;
}

.board > .board__table > tbody > .board__row--head {
  font-weight: bold;
  font-size: 20px;
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

.board > .board__table > tbody > .board__row > .board__cell {
  padding: 15px;
}

.board > .board__table > tbody > .board__row--body {
  border-bottom: 2px solid #ccc
}


.notice-detail {
	max-width:1200px;
	margin:5% auto;
}

.notice-detail__header {
	border-bottom:1px solid #ccc;
}

.notice-detail__header > .notice-detail__title {
	font-size:30px;
}

.notice-detail__date {
	margin:15px 0;
}

.notice-detail__content {
	margin:20px 0;
	line-height:2;
}

.notice-detail__footer {
	border-top:1px solid #ccc;
	padding-top:10px;
}

/*페이징*/

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.pagination__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}

.pagination__item {
  display: inline-block;
}

.pagination__link {
  display: block;
  min-width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
}

.pagination__link:hover {
  background-color: #f5f5f5;
}

.pagination__item--active .pagination__link {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.pagination__item--prev .pagination__link,
.pagination__item--next .pagination__link {
  font-weight: bold;
}



@media (max-width: 992px) {
  .sponsor-panel_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sponsor-panel_list {
    grid-template-columns: 1fr;
  }
}


/* 반응형 (모바일 대응) */
@media (max-width: 768px) {
  .header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gnb .gnb-list {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

  .leng_eng {
    position: static;
    align-self: flex-end;
    margin-bottom: 10px;
  }

    .menu-panel__content {
      display: block;
  }

  .menu-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}