@charset "utf-8";

.main-wrapper { max-width: 1400px; margin: 40px auto; padding: 20px;}
.sub-title-header { width: 100%; font-size: 2.5rem; font-weight: bold; text-align: center; margin-bottom: 60px; padding-bottom: 40px; border-bottom: 2px solid #eee; box-sizing: border-box; }

.main-wrapper.intro{display: flex; gap: 0 60px; flex-wrap: wrap; }
.poster-area { flex: 1.5; min-width: 300px; box-sizing: border-box; margin-bottom: 15px;}
.poster-area img { max-width: 100%; height: auto; display: block;}
.info-area { flex: 2; box-sizing: border-box; }
.event-container { max-width: 800px; margin: 40px auto; padding: 20px; }
.sub-title { font-size: 2em; font-weight: bold; text-align: center; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 2px solid #eee; }
.event-table { width: 100%; border-collapse: collapse; border-top: 2px solid #333; }
.event-table th, .event-table td { padding: 15px 10px; border-bottom: 1px solid #ddd; text-align: left; font-size: 1rem; }
.event-table th { font-weight: bold; width: 25%; vertical-align: top; }
.event-table td { width: 75%; }

.tab-buttons { display: flex; list-style: none; padding: 0; margin: 0; justify-content: center; gap:10px;}
.tab-button { padding: 15px 25px; border-radius: 50px; background: #000; cursor: pointer; border: none; outline: none; font-size: 16px; font-weight: bold; color: #888; flex-grow: 1; text-align: center; }
.tab-button.active {color: #000; background: var(--primary);}
.tab-content { display: none; padding: 30px; }
.tab-content.active { display: block; }
.content-title { font-size: 48px; font-weight: bold; margin-bottom: 15px; color: #333; }
.content-text { font-size: 24px; color: #555; }
.media-placeholder { width: 100%; aspect-ratio: 16 / 9; background-color: #e0e0e0; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; border-radius: 4px; color: #888; font-size: 18px; font-weight: bold; }

.program-header { padding: 30px 40px; text-align: center; }
.program-header .title-en { font-size: 2.2em; font-weight: 900; color: #333; margin: 0; letter-spacing: -1px; }
.program-header .subtitle-ko { font-size: 1.2em; font-weight: 700; color: #55ec0b; /* 포인트 컬러 */ margin-top: 5px; }
.program-image-placeholder { width: 100%;}
.program-image-placeholder img{width:100%;}
.program-content { padding: 40px; line-height: 1.8; background:#000;}
.program-content p { font-size: 18px; color: #fff; text-align: center; font-weight: 300;}
.program-content .highlight { font-weight: 700; color: #fff; }
.program-details { background-color: #000; padding: 25px 40px 70px;}
.program-details ul { list-style: none; padding: 0; margin: 0; }
.program-details li {font-size: 24px; color: #fff; margin-bottom: 12px; line-height: 1.6; text-align: center;}
.program-details li:last-child { margin-bottom: 0; }
.program-details .label {display: inline-block; padding-right:20px; font-weight: 700; color: #55ec0b; }
.program-details .label::after { content: ':'; margin-left: 5px; }


.tabs-container { max-width: 1000px; margin: 30px auto; background-color: #fff; overflow: hidden; }
.tab-nav { display: flex; list-style: none; padding: 0; margin: 0; border-bottom: 1px solid #ddd; }
.tab-item { flex-grow: 1; padding: 15px 10px; cursor: pointer; text-align: center; font-weight: bold; color: #333; border-right: 1px solid #ddd; transition: opacity 0.3s ease; font-size:16px;}
.tab-item:last-child { border-right: none; }
.tab-item[data-tab="seoul"] { background-color: #FCF3401c; }
.tab-item[data-tab="gyeonggi"] { background-color: #FB33DB1c; }
.tab-item[data-tab="gangwon"] { background-color: #0310EA1c; }
.tab-item[data-tab="jeolla"] { background-color: #FF822E1c; }
.tab-item[data-tab="gyeongsang"] { background-color: #0310EA1c; }
.tab-item[data-tab="busan"] { background-color: #F52E7F1c; }
.tab-item[data-tab="jeju"] { background-color: #7100ff1c; }
.tab-item[data-tab="chungcheong"] { background-color: #08F7FE1c; }
.tab-item:not(.active) { opacity: 0.7; }
.tab-item.active { border-bottom: 3px solid #000; opacity: 1; }
.tab-content-area h3{font-size:24px; padding-bottom:20px; font-weight:normal; color:#333;}
.tab-content { display: none; animation: fadeIn 0.5s; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.company-list { list-style-type: none; /* 기본 list-style 제거 */ padding-left: 0; }
.company-item { display: flex; /* 로고와 정보를 가로로 배치 */ align-items: center; /* 세로 중앙 정렬 */ padding: 15px; border: 1px solid #eee; border-radius: 8px; margin-bottom: 15px; transition: box-shadow 0.3s ease; }
.company-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 마우스 올리면 그림자 효과 */ }
.company-logo { width: 140px; height: 140px; border-radius: 50%; /* 로고를 원형으로 표시 */ object-fit: contain; /* 이미지가 찌그러지지 않도록 설정 */ margin-right: 20px; border: 1px solid #ddd; padding: 3px; background-color: #fff; }
.company-name { font-size: 22px; font-weight: bold; color: #333; }
/* style.css */

/* 각 업체 정보를 담는 카드 */
.company-card {
    display: flex; /* 좌우 컬럼 배치를 위해 flex 사용 */
    background-color: #fff;
    border: 1px solid #e0e0e0; /* 그림자 대신 border 사용 */
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    gap: 24px; /* 로고와 정보 사이의 간격 */
}

/* 왼쪽 로고 컬럼 */
.logo-column {
    flex: 0 0 180px; /* 너비를 180px로 고정 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0; /* 구분선 */
    padding-right: 24px;
}

.logo-column img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* 오른쪽 정보 컬럼 */
.info-column {
    flex: 1; /* 남은 공간을 모두 차지 */
}

.info-column h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.info-column dl {
    font-size: 14px;
    color: #666;
    line-height: 2;
}

.info-column dl div {
    display: flex;
}

.info-column dt {
    width: 80px;
    font-weight: 500;
    color: #888;
    flex-shrink: 0;
}

.info-column dd {
    margin-left: 0;
    color: #333;
}

/* --- 반응형 레이아웃 --- */
@media (max-width: 768px) {
    .company-card {
        flex-direction: column; /* 화면이 좁아지면 상하로 쌓이도록 변경 */
        padding: 16px;
        gap: 16px;
    }

    .logo-column {
        flex-basis: auto; /* 너비 고정 해제 */
        border-right: none; /* 세로 구분선 제거 */
        border-bottom: 1px solid #f0f0f0; /* 가로 구분선 추가 */
        padding-right: 0;
        padding-bottom: 16px;
    }

    .info-column h2 {
        font-size: 1.5rem;
    }
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* 모바일에서 부드러운 스크롤을 위함 */
}
.schedule-table { width: 100%; border-collapse: collapse; margin: 30px 0; font-size: 1rem; text-align: center;}
.schedule-table th, .schedule-table td { border: 1px solid #fff; padding: 15px; }
.schedule-table th { background-color: #55ec0b; font-weight: 700; color: #000; border: 1px solid #ffffff;}
.schedule-table td { color: #fff; }
.schedule-table .category-header { width: 20%; font-weight: 700; background-color: #55ec0b; color:#000; border: 1px solid #ffffff;}

.intro-section h2 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
}

/* 버튼 그룹 컨테이너 */
.button-group {
	display: flex;
	gap: 10px;
	margin-bottom: 40px;
}

/* 기본 버튼 스타일 */
.button-group .btn {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	border: 2px solid #333;
	cursor: pointer;
	flex: 1; /* 버튼이 동일한 너비를 갖도록 설정 */
	max-width: 250px; /* 최대 너비 제한 */
	line-height: 65px;
    height: 65px;
}

/* 채워진 스타일 버튼 */
.btn-filled {
	background-color: #333;
	color: #fff;
}

/* 테두리만 있는 스타일 버튼 */
.btn-outline {
	background-color: #fff;
	color: #333;
}

/* 단계별 프로세스 목록 */
.step-process-list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
	border: 1px solid #ddd;
	border-right: none;
}

/* 각 프로세스 단계 아이템 */
.step-item {
	flex: 1; /* 모든 아이템이 동일한 너비를 갖도록 설정 */
	text-align: center;
	border-right: 1px solid #ddd;
}

.step-item-header {
	background-color: #55ec0b; /* 주황색 배경 */
	color: #000;
	padding: 10px;
	font-weight: bold;
}

.step-item-content {
	padding: 20px 10px;
	font-size: 14px;
	background-color: #fff;
	min-height: 80px; /* 최소 높이 지정 */
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 정보 제공용 테이블 */
.info-table {
	width: 100%;
	border-collapse: collapse; /* 테두리 겹침 방지 */
	margin-bottom: 15px;
}

.info-table th, .info-table td {
	border: 1px solid #ccc;
	padding: 15px;
	text-align: center;
	font-size: 15px;
	vertical-align: middle;
}

.info-table th {
	background-color: #f2f2f2; /* 헤더 배경색 */
	font-weight: bold;
}

.info-table td span {
	display: block;
	font-size: 13px;
	color: #666;
	margin-top: 5px;
}

/* 보충 설명 텍스트 */
.supplementary-note {
	font-size: 14px;
	color: #555;
	margin-bottom: 40px;
}

/* 연락처 정보 박스 */
.contact-info-box {
	border: 1px solid #ccc;
	background-color: #f9f9f9;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-info-box .name {
	font-weight: bold;
	font-size: 16px;
}

.contact-info-box .details {
	font-size: 15px;
}

.notes-list {
	list-style-type: none; /* 기본 불릿 제거 */
	padding-left: 0;
	margin-top: 30px;
}

.notes-list li {
	padding-left: 0.2em; /* '•' 문자가 들어갈 공간 확보 */
	margin-bottom: 8px;
	font-size: 14px;
	color: #444;
}

.notes-list li::before {
	content: "•"; /* 불릿 문자 지정 */
	color: #333;
	font-weight: bold;
	display: inline-block;
	width: 1.2em; /* 위 padding-left, text-indent와 동일한 값 */
}

 .article-item {
            margin-bottom: 25px; /* 조항 간의 간격 */
        }

        /* 규정/조항의 제목 */
        .article-title {
            font-size: 16px;
            font-weight: bold;
            color: #c94444; /* 이미지의 붉은색 텍스트 */
            margin-bottom: 8px;
        }

        /* 규정/조항의 내용 */
        .article-content {
            font-size: 15px;
            padding-left: 20px; /* 들여쓰기 */
            color: #555;
        }

.info-list p {
            font-size: 16px;
            margin: 5px 0 5px 15px;
        }

		.info-list.visitor_info{background:#000; }
		.info-list.visitor_info p{color:#55ec0b; font-size:24px;}
		.info-list.visitor_info p strong{color:#fff;}

        /* 버튼 그룹 (이번에 추가) */
        .button-group-inline {
            display: flex;
            margin: 20px 0;
        }

        .button-group-inline .btn {
            flex: 1;
            max-width: 200px;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            text-decoration: none;
            cursor: pointer;
			    max-width: 250px;
    line-height: 65px;
    height: 65px;
        }
        
        /* 버튼 색상 스타일 (이번에 추가) */
        .btn-green {
            background-color: var(--primary);
            color: #000;
        }
        .btn-yellow {
            background-color: #fca311;
            color: #333;
        }

        /* 안내 노트 텍스트 (이번에 추가) */
        .info-note {
            font-weight: bold;
            font-size: 16px;
            margin-left: 5px;
        }
        
        /* 정보 제공용 테이블 */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }

        .info-table th, .info-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: center;
            vertical-align: middle;
        }
        
        /* 가격표 테이블 전용 스타일 (이번에 추가) */
        .price-table th {

            font-weight: bold;
        }
        .price-table td {

        }
        .price-table .sub-header th {
            font-weight: normal;
        }

		.section-title {
            font-size: 20px;
            font-weight: bold;
            margin-top: 50px;
            margin-bottom: 20px;

        }

        .section-intro {
            font-size: 16px;
            color: #555;
            margin-bottom: 40px;
        }

		.faq-list {
            border-top: 2px solid #333;
        }

        .faq-item {
            border-bottom: 1px solid #ddd;
        }
        
        /* <summary>가 질문 역할을 함 */
        .faq-question {
            position: relative;
            padding: 20px 15px 20px 50px;
            font-size: 17px;
            font-weight: bold;
            cursor: pointer;
            background-color: #f8f9fa;
            list-style: none; /* 기본 마커(화살표) 제거 */
            transition: background-color 0.2s ease-in-out;
        }
        
        /* 웹킷 브라우저의 기본 마커 제거 */
        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question::before {
            content: "Q";
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            font-weight: bold;
            color: #007bff;
        }

        .faq-answer {
            position: relative;
            padding: 25px 20px 25px 60px;
            font-size: 16px;
            color: #444;
            background-color: #fff;
        }
.booth-container {
            display: flex;
            gap: 20px; /* 카드 사이의 간격 */
            flex-wrap: wrap; /* 화면이 작아지면 줄바꿈 */
            justify-content: center;
        }

        /* 개별 카드 스타일 */
        .booth-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 4px; /* 약간 둥근 모서리 */
            width: calc(33% - 20px);
            overflow: hidden; /* 이미지가 카드를 벗어나지 않도록 */
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .booth-card .image-container {
            width: 100%;
            height: auto;
            background-color: #f8f9fa; /* 이미지 로딩 전 배경색 */
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
			min-width: 220px;
        }
        
        .booth-card .image-container .dimensions {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background-color: rgba(0, 0, 0, 0.4);
            color: white;
            padding: 2px 6px;
            font-size: 12px;
            border-radius: 4px;
        }

        .booth-card img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 이미지가 영역에 맞게 잘리도록 */
        }

        .booth-card .info {
            padding: 20px;
        }

        .booth-card .header {
            display: flex;
            justify-content: space-between; /* 제목과 가격을 양쪽 끝으로 */
            align-items: center;
            margin-bottom: 12px;
        }

        .booth-card .title {
            font-size: 20px;
            font-weight: 700;
            color: #333;
        }

        .booth-card .price {
            font-size: 16px;
            font-weight: 500;
            color: #555;
            white-space: nowrap; /* 가격이 줄바꿈되지 않도록 */
        }

        .booth-card hr {
            border: 0;
            height: 1px;
            background-color: #e9ecef;
            margin: 16px 0;
        }

        .booth-card .description {
            font-size: 15px;
            color: #495057;
        }

        .booth-card .description p {
            margin: 0 0 10px 0;
        }

        .booth-card .options {
            list-style: none;
            padding: 0;
            margin: 10px 0 0 0;
            font-size: 14px;
            color: #666;
        }

        .booth-card .options li {
            margin-bottom: 6px;
        }

.info-list{    border: 1px solid #ccc;
    background-color: #f9f9f9;
	padding:20px;}
       


@media (max-width:1080px){
.booth-card{display:flex; flex-direction: row; width:100%;}
.booth-card .image-container{width:40%; border-right: 1px solid #e0e0e0; border-bottom:unset;}
}


@media (max-width:768px){
.sub-title-header{font-size: 1.9rem;}
.company-logo{width: 100px; height: 100px;}
.booth-card{display:block; width:100%;}
.booth-card .image-container{width:100%; border-right: unset; border-bottom:1px solid #e0e0e0;}
.content-title{font-size: 20px;}
.content-text{font-size: 16px;}
.program-details li{font-size: 18px;}
.contact-info-box{    flex-direction: column;}
.info-list.visitor_info p{font-size: 18px;}
}

@media (max-width:480px){
.tab-item{font-size: 14px; padding: 10px 5px;}
.company-logo{width: 80px; height: 80px;}
.tab-content{padding:0; padding-top:15px;}
.tab-content-area h3{font-size:18px;}
.sub-title-header{margin-bottom: 30px;}
.company-name{font-size:16px;}
.button-group{padding-top:15px;}
}