/* 出展案内ページ専用スタイル */
.exhibitors {
    background-color: #fff;
}

/* 展示会情報 */
.event-info {
    background: linear-gradient(135deg, #1E6A39 0%, #26998B 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.event-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.event-date, .event-venue {
    font-size: 18px;
    font-weight: 500;
}

/* 画像モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0,0,0,0.7);
}

/* ページ内ナビゲーション */
.page-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 15px 0;
}

.page-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-nav-item {
    color: #1E6A39;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s;
    white-space: nowrap;
}

.page-nav-item:hover {
    background: #1E6A39;
    color: white;
}

/* セクション共通 */
.section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.section:last-of-type {
    border-bottom: none;
}

.section-title {
    color: #1E6A39;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1E6A39;
    display: inline-block;
}

/* 出展対象分野（カラフル化） */
.target-fields {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.field-item {
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex; /* flexレイアウトに変更 */
    align-items: flex-start; /* 上揃えに */
    gap: 15px; /* アイコンとテキスト間の間隔 */
}

.field-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.field-item:nth-child(1) { border-left-color: #FF6B6B; background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(255,107,107,0.05) 100%); }
.field-item:nth-child(2) { border-left-color: #4ECDC4; background: linear-gradient(135deg, rgba(78,205,196,0.1) 0%, rgba(78,205,196,0.05) 100%); }
.field-item:nth-child(3) { border-left-color: #45B7D1; background: linear-gradient(135deg, rgba(69,183,209,0.1) 0%, rgba(69,183,209,0.05) 100%); }
.field-item:nth-child(4) { border-left-color: #96CEB4; background: linear-gradient(135deg, rgba(150,206,180,0.1) 0%, rgba(150,206,180,0.05) 100%); }
.field-item:nth-child(5) { border-left-color: #FFEAA7; background: linear-gradient(135deg, rgba(255,234,167,0.1) 0%, rgba(255,234,167,0.05) 100%); }
.field-item:nth-child(6) { border-left-color: #DDA0DD; background: linear-gradient(135deg, rgba(221,160,221,0.1) 0%, rgba(221,160,221,0.05) 100%); }
.field-item:nth-child(7) { border-left-color: #98D8C8; background: linear-gradient(135deg, rgba(152,216,200,0.1) 0%, rgba(152,216,200,0.05) 100%); }
.field-item:nth-child(8) { border-left-color: #F7DC6F; background: linear-gradient(135deg, rgba(247,220,111,0.1) 0%, rgba(247,220,111,0.05) 100%); }

.field-icon {
    width: 80px; /* アイコンサイズを大幅に拡大 */
    height: 80px; /* アイコンサイズを大幅に拡大 */
    flex-shrink: 0; /* サイズを固定 */
    object-fit: contain; /* 画像のアスペクト比を保持 */
}

.field-text-content {
    flex: 1; /* 残りの幅を使用 */
}

.field-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.field-content {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.6;
}


/* 来場対象（シンプル化） */
.visitor-targets {
    background: linear-gradient(135deg, #f4faf7 0%, #fffdf6 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.visitor-targets::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.visitor-targets::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.visitor-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.visitor-column ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}

.visitor-column li {
    margin-bottom: 12px;
    color: rgba(0,0,0,0.95);
    position: relative;
    font-weight: 500;
    font-size: 16px;
}

.visitor-column li::marker {
    color: #FFEB3B;
}

.visitor-etc {
    text-align: right;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #1E6A39;
    position: relative;
    z-index: 2;
}

/* 小間タイプ */
.booth-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.booth-type {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.booth-type:hover {
    transform: translateY(-5px);
}

.booth-image {
    width: 100%;
    height: 180px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    cursor: pointer;
}

.booth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.booth-content {
    padding: 20px;
}

.booth-title {
    color: #1E6A39;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.booth-price {
    color: #e74c3c;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.booth-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* 料金情報ボックス */
.pricing-info {
    background: linear-gradient(135deg, #1E6A39 0%, #26998B 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
}

.pricing-main {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pricing-item {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 8px;
}

.pricing-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.pricing-item .price {
    font-size: 32px;
    font-weight: bold;
    color: #FF8A5B;
    margin-bottom: 5px;
}

.pricing-item .condition {
    font-size: 16px;
    margin-top: 5px;
    color: #666;
}

/* 税込表記のスタイル */
.tax-note {
    font-size: 0.7em;
    font-weight: normal;
    margin-left: 5px;
}

/* ========================================
   申込要領 - テーブル形式（コンパクト版）
   ======================================== */

.application-table-container {
    margin-top: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.application-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.application-header-cell {
    background: linear-gradient(135deg, #1E6A39 0%, #26998B 100%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 16px 20px;
    text-align: left;
    vertical-align: top;
    width: 200px;
    min-width: 200px;
    border-bottom: 1px solid #ddd;
}

.application-content-cell {
    padding: 16px 20px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.application-table tbody tr:last-child .application-header-cell,
.application-table tbody tr:last-child .application-content-cell {
    border-bottom: none;
}

/* 申込締切スタイル */
.deadline-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.deadline-left {
    flex-shrink: 0;
}

.deadline-date {
    font-size: 18px;
    font-weight: bold;
    color: #E65100;
    margin-bottom: 4px;
}

.deadline-note {
    font-size: 14px;
    color: #F57C00;
    font-weight: 500;
}

.deadline-right {
    flex: 1;
}

.deadline-right p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* 申込方法スタイル */
.method-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.method-overview {
    background: #F8F9FA;
    padding: 12px;
    border-radius: 6px;
}

.method-overview p {
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

.method-overview p:last-child {
    margin-bottom: 0;
}

.method-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.method-post,
.method-email {
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    padding: 12px;
}

.method-post h4,
.method-email h4 {
    font-size: 14px;
    font-weight: bold;
    color: #1E6A39;
    margin: 0 0 8px 0;
}

.method-post p,
.method-email p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

/* お支払いスタイル */
.payment-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.payment-left {
    flex: 1;
}

.payment-left p {
    margin: 0;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

.payment-right {
    flex-shrink: 0;
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 3px solid #4CAF50;
    text-align: center;
}

.payment-deadline {
    font-size: 16px;
    font-weight: bold;
    color: #2E7D32;
}

/* 変更・取り消しスタイル */
.cancellation-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cancellation-overview {
    background: #FFF3E0;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #FF8A5B;
}

.cancellation-overview p {
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

.cancellation-overview p:last-child {
    margin-bottom: 0;
}

.cancellation-fees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fee-left,
.fee-right {
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
    border-radius: 6px;
    padding: 12px;
}

.fee-left p,
.fee-right p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.fee-left strong,
.fee-right strong {
    color: #D32F2F;
    font-weight: bold;
}

/* パッケージブース */
.package-booth {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.package-price-box {
    background: linear-gradient(135deg, #FF8A5B 0%, #FBA94C 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.package-price-amount {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.package-price-note {
    font-size: 16px;
    opacity: 0.9;
}

.package-content h4 {
    color: #1E6A39;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.package-text {
    color: #333;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 16px;
}

.package-text:last-child {
    margin-bottom: 0;
}

.package-image {
    width: 300px;
    height: 225px;
    background: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 20px;
    cursor: pointer;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

/* スケジュール（1段5列） */
.schedule-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.schedule-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.schedule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.schedule-content {
    padding: 20px 15px;
    color: #333;
    line-height: 1.6;
}

.schedule-content.green-header {
    background: #1E6A39;
    color: white;
    padding: 20px 15px;
}

.schedule-content strong {
    color: inherit;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.schedule-content .description {
    font-size: 15px;
    margin-bottom: 15px;
}

.schedule-date {
    background: white;
    color: #1E6A39;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
}

.schedule-date.white-bg {
    background: white;
    color: #1E6A39;
    font-weight: bold;
}

/* 出展規定 */
.regulations-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #1E6A39;
}

.regulations-text {
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.regulations-link {
    margin-top: 20px;
}

.download-btn {
    background: #1E6A39;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #26998B;
    transform: translateY(-2px);
}

/* セミナーテーブル（料金・画像追加） */
.presentation-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.presentation-description {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.presentation-price {
    background: linear-gradient(135deg, #FF8A5B 0%, #FBA94C 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.presentation-price.compact-price {
    padding: 15px;
}

.presentation-price-amount {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.presentation-price-note {
    font-size: 16px;
    opacity: 0.9;
}

.presentation-text {
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.presentation-text:last-of-type {
    margin-bottom: 20px;
}

.presentation-image {
    margin-top: auto;
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    cursor: pointer;
}

.presentation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.presentation-table-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%; /* 幅を100%に設定 */
}

.presentation-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    flex-grow: 1;
    border-collapse: separate; /* border-collapseを分離に */
    border-spacing: 0; /* border-spacingを0に */
    table-layout: fixed; /* テーブルレイアウトを固定に */
}

.presentation-table thead tr,
.presentation-table tbody tr {
    display: table-row; /* table-rowに戻す */
    width: 100%;
}

.presentation-table th,
.presentation-table td {
    display: table-cell; /* table-cellに戻す */
    width: 25%; /* 各列を25%の幅に設定 */
    padding: 12px 8px;
    text-align: center;
    font-size: 15px;
    vertical-align: middle; /* 縦方向の中央揃え */
}

.presentation-table th {
    background: #1E6A39;
    color: white;
    font-weight: bold;
    border-right: 1px solid #26998B;
}

.presentation-table th:last-child {
    border-right: none;
}

.presentation-table td {
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    height: 60px; /* 各行の高さを固定 */
}

.presentation-table td:last-child {
    border-right: none;
}

.presentation-table tbody tr:nth-child(even) td {
    background: #f8f9fa;
}

.presentation-table tbody tr:last-child td {
    border-bottom: none;
}

/* 出展メリット・併催事業 */
.benefits-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.benefits-subtitle {
    color: #FF8A5B;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.benefits-text {
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.benefits-list {
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.8;
}

.benefits-list li {
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

/* プロモーション */
.promotion-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.promotion-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.promotion-item:nth-child(even) {
    grid-template-columns: 1fr 200px;
}

.promotion-item:nth-child(even) .promotion-image {
    order: 2;
}

.promotion-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    cursor: pointer;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.promotion-content h4 {
    color: #1E6A39;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.promotion-content p {
    color: #333;
    line-height: 1.7;
    font-size: 16px;
}

/* 資料ダウンロードセクション（オレンジベース） */
.download-link-section {
    background: linear-gradient(135deg, #FF8A5B 0%, #FBA94C 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.download-link-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.download-link-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.download-link-btn {
    display: inline-block;
    background: white;
    color: #FF6B35;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.download-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* 印刷時のスタイル */
@media print {
    .header,
    .footer,
    #header,
    #footer {
        display: none !important;
    }
    
    .page-nav {
        display: none !important;
    }
    
    #pageTop {
        display: none !important;
    }
    
    .modal {
        display: none !important;
    }
    
    .wrapper {
        padding-top: 0 !important;
        box-shadow: none !important;
        max-width: none !important;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
    
    .contents-wrap {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }
}

/* ========================================
   レスポンシブ対応
   ======================================== */

@media screen and (max-width: 1024px) {
    .schedule-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* 申込要領のレスポンシブ - タブレット */
    .application-header-cell {
        width: 180px;
        min-width: 180px;
        font-size: 15px;
        padding: 14px 16px;
    }
    
    .application-content-cell {
        padding: 14px 16px;
    }
    
    .deadline-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .method-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .payment-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .cancellation-fees {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media screen and (max-width: 768px) {
    .event-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-title {
        font-size: 24px;
    }
    
    .event-date, .event-venue {
        font-size: 16px;
    }
    
    .visitor-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .visitor-column li {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .visitor-etc {
        text-align: center;
        font-size: 16px;
    }
    
    .page-nav {
        top: 60px;
    }
    
    .page-nav-list {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .field-title {
        font-size: 16px;
    }
    
    .field-icon {
        width: 60px; 
        height: 60px;
    }
    
    .field-item {
        gap: 12px; 
    }
      
    .field-content {
        font-size: 15px;
    }
    
    .booth-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booth-description {
        font-size: 15px;
    }
    
    .pricing-main {
        font-size: 18px;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
    }
    
    .pricing-item .price {
        font-size: 28px;
    }
    
    .pricing-item .condition {
        font-size: 15px;
    }
    
    /* 申込要領のモバイル対応 */
    .application-table-container {
        margin-top: 25px;
    }
    
    .application-table {
        display: block;
        width: 100%;
        box-shadow: none;
    }
    
    .application-table tbody {
        display: block;
    }
    
    .application-table tr {
        display: block;
        background: white;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        margin-bottom: 16px;
        overflow: hidden;
    }
    
    .application-header-cell {
        display: block;
        width: 100%;
        min-width: auto;
        background: linear-gradient(135deg, #1E6A39 0%, #26998B 100%);
        color: white;
        font-size: 15px;
        font-weight: bold;
        padding: 14px 16px;
        text-align: left;
        border-bottom: none;
    }
    
    .application-content-cell {
        display: block;
        width: 100%;
        padding: 16px;
        border-bottom: none;
    }
    
    .deadline-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .deadline-date {
        font-size: 16px;
    }
    
    .deadline-note {
        font-size: 13px;
    }
    
    .deadline-right p {
        font-size: 13px;
    }
    
    .method-overview {
        padding: 10px;
    }
    
    .method-overview p {
        font-size: 13px;
    }
    
    .method-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .method-post,
    .method-email {
        padding: 10px;
    }
    
    .method-post h4,
    .method-email h4 {
        font-size: 13px;
    }
    
    .method-post p,
    .method-email p {
        font-size: 13px;
    }
    
    .payment-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-left p {
        font-size: 13px;
    }
    
    .payment-right {
        text-align: center;
        padding: 10px 12px;
    }
    
    .payment-deadline {
        font-size: 14px;
    }
    
    .cancellation-overview {
        padding: 10px;
    }
    
    .cancellation-overview p {
        font-size: 13px;
    }
    
    .cancellation-fees {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .fee-left,
    .fee-right {
        padding: 10px;
    }
    
    .fee-left p,
    .fee-right p {
        font-size: 13px;
    }
    
    .package-booth {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .package-image {
        justify-self: center;
    }
    
    .package-content h4 {
        font-size: 18px;
    }
    
    .package-text {
        font-size: 15px;
    }
    
    .schedule-timeline {
        grid-template-columns: 1fr;
    }
    
    .schedule-content strong {
        font-size: 15px;
    }
    
    .schedule-content .description {
        font-size: 14px;
    }
    
    .schedule-date {
        font-size: 14px;
        padding: 12px 8px;
    }
    
    .regulations-text {
        font-size: 15px;
    }
    
    .download-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .presentation-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .presentation-price-amount {
        font-size: 28px;
    }
    
    .presentation-price-note {
        font-size: 15px;
    }
    
    .presentation-text {
        font-size: 15px;
    }
    
    .presentation-table th {
        font-size: 14px;
    }
    
    .presentation-table td {
        font-size: 14px;
    }
    
    .benefits-subtitle {
        font-size: 17px;
    }
    
    .benefits-text {
        font-size: 15px;
    }
    
    .benefits-list li {
        font-size: 15px;
    }
    
    .promotion-item,
    .promotion-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .promotion-item:nth-child(even) .promotion-image {
        order: 0;
    }
    
    .promotion-image {
        justify-self: center;
    }
    
    .promotion-content h4 {
        font-size: 17px;
    }
    
    .promotion-content p {
        font-size: 15px;
    }
    
    .download-link-content h3 {
        font-size: 22px;
    }
    
    .download-link-content p {
        font-size: 15px;
    }
    
    .download-link-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

@media screen and (max-width: 480px) {
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .page-nav-item {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .event-title {
        font-size: 22px;
    }
    
    .event-date, .event-venue {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .field-title {
        font-size: 15px;
    }
    
    .field-icon {
        width: 50px; 
        height: 50px;
    }
    
    .field-item {
        gap: 10px;
        padding: 15px; 
    }
    
    .field-content {
        font-size: 14px;
    }
    
    .visitor-column li {
        font-size: 14px;
    }
    
    .visitor-etc {
        font-size: 15px;
    }
    
    .pricing-main {
        font-size: 17px;
    }
    
    .pricing-item .price {
        font-size: 26px;
    }
    
    .pricing-item .condition {
        font-size: 14px;
    }
    
    .booth-title {
        font-size: 17px;
    }
    
    .booth-description {
        font-size: 14px;
    }
    
    /* 申込要領のスマートフォン対応 */
    .application-table-container {
        margin-top: 20px;
    }
    
    .application-header-cell {
        font-size: 14px;
        padding: 12px 14px;
    }
    
    .application-content-cell {
        padding: 14px;
    }
    
    .deadline-date {
        font-size: 15px;
    }
    
    .deadline-note {
        font-size: 12px;
    }
    
    .deadline-right p {
        font-size: 12px;
    }
    
    .method-overview {
        padding: 8px;
    }
    
    .method-overview p {
        font-size: 12px;
    }
    
    .method-post,
    .method-email {
        padding: 8px;
    }
    
    .method-post h4,
    .method-email h4 {
        font-size: 12px;
    }
    
    .method-post p,
    .method-email p {
        font-size: 12px;
    }
    
    .payment-left p {
        font-size: 12px;
    }
    
    .payment-right {
        padding: 8px 10px;
    }
    
    .payment-deadline {
        font-size: 13px;
    }
    
    .cancellation-overview {
        padding: 8px;
    }
    
    .cancellation-overview p {
        font-size: 12px;
    }
    
    .fee-left,
    .fee-right {
        padding: 8px;
    }
    
    .fee-left p,
    .fee-right p {
        font-size: 12px;
    }
    
    .package-content h4 {
        font-size: 17px;
    }
    
    .package-text {
        font-size: 14px;
    }
    
    .package-price-amount {
        font-size: 26px;
    }
    
    .package-price-note {
        font-size: 14px;
    }
    
    .schedule-content strong {
        font-size: 14px;
    }
    
    .schedule-content .description {
        font-size: 13px;
    }
    
    .schedule-date {
        font-size: 13px;
        padding: 10px 6px;
    }
    
    .regulations-text {
        font-size: 14px;
    }
    
    .download-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .presentation-table th,
    .presentation-table td {
        padding: 6px 4px;
        font-size: 13px;
    }
    
    .presentation-price-amount {
        font-size: 26px;
    }
    
    .presentation-price-note {
        font-size: 14px;
    }
    
    .presentation-text {
        font-size: 14px;
    }
    
    .benefits-subtitle {
        font-size: 16px;
    }
    
    .benefits-text {
        font-size: 14px;
    }
    
    .benefits-list li {
        font-size: 14px;
    }
    
    .promotion-content h4 {
        font-size: 16px;
    }
    
    .promotion-content p {
        font-size: 14px;
    }
    
    .download-link-content h3 {
        font-size: 20px;
    }
    
    .download-link-content p {
        font-size: 14px;
    }
    
    .download-link-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}