/*
Theme Name: new （テーマの名前）
Description: xxxxxxx（テーマの説明）
Version: xxx
Author: xxx
*/

/* 横幅の問題を修正 */
html, body {
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(234, 91, 56, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease, opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

.cursor-follower.active {
    opacity: 1;
    transform: scale(2);
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-weight: bold;
    color: #00695B;
    line-height: 1.2;
    text-align: center;
}

.logo-main {
    font-size: 24px;
    letter-spacing: 3px;
    white-space: nowrap;
}

.header-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00695B;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility-links {
    display: flex;
    gap: 15px;
}

.utility-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #00695B;
    font-size: 12px;
    transition: opacity 0.3s ease;
}

.utility-link:hover {
    opacity: 0.7;
}

.utility-link .icon {
    font-size: 18px;
    margin-bottom: 2px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.search-btn,
.language-btn {
    padding: 8px 15px;
    border: 1px solid #00695B;
    background: transparent;
    color: #00695B;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover,
.language-btn:hover {
    background: #00695B;
    color: white;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section - 重要：中央配置 */
.hero-section {
    background: linear-gradient(135deg, #ea5b38 0%, #f37748 50%, #ea5b38 100%);
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

/* 🎯 重要：完全中央配置のレイアウト */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
    margin: 0;
    padding: 0 5%;
    min-height: 70vh;
}

.exhibition-poster {
    position: relative;
    background: rgba(255,255,255,0.1);
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    max-width: 500px;
}

.poster-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

/* 画像プレースホルダー用のスタイル */
.poster-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #666;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.placeholder-text {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.placeholder-subtitle {
    font-size: 14px;
    opacity: 0.7;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.poster-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.poster-item:hover {
    transform: scale(1.05);
}

.poster-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.poster-placeholder-small {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
    font-weight: 500;
}

.exhibition-info {
    color: white;
    flex-shrink: 0;
    max-width: 500px;
}

.exhibition-title {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.exhibition-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-label {
    background: rgba(255,255,255,0.9);
    color: #ea5b38;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.detail-value {
    flex: 1;
    color: #000000;
}

.date-large {
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    color: #000000;
}

.date-day {
    font-size: 18px;
    color: #000000;
}

.venue {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    color: #000000;
}

.rest-day {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    color: #000000;
}

/* Anchor Navigation */
.anchor-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 3px solid rgba(234, 91, 56, 0.3);
    padding: 30px 0;
    position: relative;
    z-index: 100;
}

.anchor-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.anchor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.anchor-row-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.anchor-pill {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.anchor-pill:hover {
    background: #ea5b38;
    color: white;
    border-color: #ea5b38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 91, 56, 0.3);
}

.anchor-pill.active {
    background: #ea5b38;
    color: white;
    border-color: #ea5b38;
}

.anchor-wide {
    text-align: left;
}

.anchor-icon {
    font-size: 12px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.anchor-pill:hover .anchor-icon {
    transform: translateY(3px);
}

/* Overview Section */
.overview-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.title-en {
    font-size: 48px;
    font-weight: 100;
    letter-spacing: 8px;
    color: #38b2ac;
    text-transform: uppercase;
}

.title-ja {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    letter-spacing: 2px;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.overview-content p {
    margin-bottom: 32px;
    text-align: justify;
}

.overview-note {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #38b2ac;
    border-radius: 8px;
}

.download-link {
    color: #ea5b38;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #d14820;
    text-decoration: underline;
}

/* Student Voices Section */
.student-voices-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.student-messages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.message-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #38b2ac;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.message-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.message-author {
    text-align: right;
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

/* Work Photos Section */
.work-photos-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid rgba(56, 178, 172, 0.2);
}

.work-photos-title {
    text-align: center;
    font-size: 28px;
    color: #38b2ac;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.work-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.work-photo-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.work-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.work-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-photo-item:hover .work-photo {
    transform: scale(1.05);
}

.photo-caption {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.5;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

@media (max-width: 768px) {
    .work-photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .work-photo {
        height: 200px;
    }
    
    .work-photos-title {
        font-size: 24px;
    }
    
    .photo-caption {
        padding: 15px;
        font-size: 13px;
    }
}

/* Highlights Section */
.highlights-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid #ea5b38;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item h3 {
    color: #ea5b38;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Access Section */
.access-section {
    background: white;
    padding: 80px 0;
}

.access-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.access-info h3 {
    color: #ea5b38;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.access-info h3:first-child {
    margin-top: 0;
}

.access-info ul {
    list-style: none;
    padding-left: 0;
}

.access-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.access-info li:before {
    content: "🚃 ";
    margin-right: 8px;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item-single {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ea5b38;
}

.contact-item-single h4 {
    color: #ea5b38;
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-info-group p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 15px;
}

.contact-info-group p:last-child {
    margin-bottom: 0;
}

.contact-info-group strong {
    color: #333;
    font-weight: 600;
    display: inline-block;
    min-width: 60px;
}

.contact-info-group a {
    color: #ea5b38;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-group a:hover {
    text-decoration: underline;
}

.contact-note {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #38b2ac;
    margin-top: 30px;
}

.contact-note p {
    margin-bottom: 10px;
    color: #333;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-item-single {
        padding: 20px;
    }
    
    .contact-info-group p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo-text {
    color: #38b2ac;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

.footer-logo-text .logo-main {
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-logo-text .logo-sub {
    font-size: 12px;
    letter-spacing: 0.5px;
}

.footer-address {
    font-style: normal;
    line-height: 1.6;
}

.footer-address p {
    margin-bottom: 8px;
    color: #a0aec0;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #38b2ac;
    font-size: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-info p {
    margin-bottom: 8px;
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 12px;
}

/* Responsive Design - スマホ版完全対応 */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
        padding: 0 3%;
    }
    
    .exhibition-title {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 5%;
        min-height: auto;
    }
    
    .exhibition-poster {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .exhibition-info {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* 横幅の問題を完全修正 */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .header-inner,
    .hero-inner,
    .hero-content,
    .exhibition-poster,
    .exhibition-info,
    .anchor-inner,
    .container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* ヘッダー修正 */
    .header-inner {
        padding: 12px 15px;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .logo-center {
        position: relative;
        left: auto;
        transform: none;
        flex: 1;
        margin: 0 10px;
    }
    
    .logo-text .logo-main {
        font-size: 16px;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    
    .header-buttons {
        flex-shrink: 0;
        gap: 8px;
    }
    
    .search-btn,
    .language-btn {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 15px;
        white-space: nowrap;
    }
    
    .search-btn .icon {
        display: none;
    }
    
    /* ヒーローセクション修正 - 正しい順番 */
    .hero-section {
        padding: 20px 0 30px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
        min-height: auto;
        width: 100%;
    }
    
    /* 1. タイトルを最初に表示 */
    .exhibition-info {
        order: 1;
        width: 100%;
        max-width: none;
    }
    
    .exhibition-title {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.3;
        text-align: center;
    }
    
    /* 2. 写真を2番目に表示 */
    .exhibition-poster {
        order: 2;
        max-width: 100%;
        padding: 15px;
        width: 100%;
    }
    
    .poster-placeholder,
    .poster-image {
        height: 200px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .placeholder-text {
        font-size: 16px;
    }
    
    .placeholder-subtitle {
        font-size: 12px;
    }
    
    .poster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        width: 100%;
    }
    
    .poster-placeholder-small {
        height: 60px;
        font-size: 10px;
        width: 100%;
    }
    
    /* 3. 展示詳細を3番目に表示 */
    .exhibition-details {
        order: 3;
        gap: 20px;
        width: 100%;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        width: 100%;
    }
    
    .detail-label {
        align-self: flex-start;
        min-width: auto;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .detail-value {
        width: 100%;
    }
    
    .date-large {
        font-size: 16px;
    }
    
    .date-day {
        font-size: 14px;
    }
    
    .venue,
    .rest-day {
        font-size: 14px;
    }
    
    /* アンカーナビゲーション修正 - 横スクロール対応のみ */
    .anchor-nav {
        padding: 20px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .anchor-inner {
        padding: 0;
        width: 100%;
    }
    
    .anchor-menu {
        overflow-x: auto;
        padding: 0 15px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .anchor-grid {
        display: flex;
        gap: 12px;
        min-width: max-content;
        padding-bottom: 10px;
    }
    
    .anchor-pill {
        flex-shrink: 0;
        padding: 12px 20px;
        font-size: 12px;
        min-height: 45px;
        text-align: center;
        white-space: nowrap;
        min-width: auto;
    }
    
    /* スクロールバーのスタイリング */
    .anchor-menu::-webkit-scrollbar {
        height: 4px;
    }
    
    .anchor-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .anchor-menu::-webkit-scrollbar-thumb {
        background: #ea5b38;
        border-radius: 2px;
    }
    
    .anchor-menu::-webkit-scrollbar-thumb:hover {
        background: #d14820;
    }
    
    /* セクション共通 */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100vw;
    }
    
    .content-section {
        padding: 50px 0 !important;
        width: 100%;
    }
    
    /* タイトル修正 */
    .title-en {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .title-ja {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* 概要セクション */
    .overview-content {
        font-size: 14px;
        line-height: 1.7;
        width: 100%;
    }
    
    .overview-content p {
        margin-bottom: 20px;
        text-align: left;
        width: 100%;
    }
    
    .overview-note {
        padding: 15px;
        margin-top: 25px;
        width: 100%;
    }
    
    /* メッセージセクション */
    .student-messages {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
    }
    
    .message-card {
        padding: 20px;
        width: 100%;
    }
    
    .message-content {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .message-author {
        font-size: 12px;
    }
    
    /* 作業風景写真 */
    .work-photos-section {
        margin-top: 40px;
        padding-top: 30px;
        width: 100%;
    }
    
    .work-photos-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .work-photos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
    }
    
    .work-photo {
        height: 180px;
        width: 100%;
    }
    
    .photo-caption {
        padding: 15px;
        font-size: 12px;
    }
    
    /* ハイライトセクション */
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
    }
    
    .highlight-item {
        padding: 20px;
        width: 100%;
    }
    
    .highlight-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    /* アクセスセクション */
    .access-content {
        margin-top: 30px;
        width: 100%;
    }
    
    .access-info h3 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    
    .access-info h3:first-child {
        margin-top: 0;
    }
    
    .access-info p {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .access-info li {
        padding: 6px 0;
        font-size: 14px;
    }
    
    /* お問い合わせセクション */
    .contact-content {
        margin-top: 30px;
        width: 100%;
    }
    
    .contact-item-single {
        padding: 20px;
        width: 100%;
    }
    
    .contact-item-single h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .contact-info-group p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    .contact-info-group strong {
        min-width: 50px;
        font-size: 13px;
    }
    
    .contact-note {
        padding: 20px;
        margin-top: 20px;
        width: 100%;
    }
    
    .contact-note p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    /* フッター */
    .footer {
        padding: 30px 0 15px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .footer-logo-text .logo-main {
        font-size: 16px;
    }
    
    .footer-logo-text .logo-sub {
        font-size: 11px;
    }
    
    .footer-address p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .footer-info p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    /* カーソルフォロワーを非表示 */
    .cursor-follower {
        display: none;
    }
    
    /* アニメーション軽減 */
    .exhibition-poster,
    .exhibition-info,
    .detail-item {
        animation: none;
    }
    
    /* ホバー効果を無効化 */
    .poster-item:hover,
    .message-card:hover,
    .highlight-item:hover,
    .work-photo-item:hover {
        transform: none;
    }
    
    .work-photo-item:hover .work-photo {
        transform: none;
    }
}

/* 極小画面対応 */
@media (max-width: 480px) {
    .header-inner {
        padding: 10px 12px;
    }
    
    .logo-text .logo-main {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .header-buttons {
        gap: 6px;
    }
    
    .search-btn,
    .language-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .exhibition-title {
        font-size: 18px;
    }
    
    .anchor-grid {
        grid-template-columns: 1fr;
    }
    
    .anchor-pill {
        font-size: 11px;
        padding: 10px 12px;
    }
    
    .title-en {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .title-ja {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.exhibition-poster {
    animation: slideInLeft 0.8s ease 0.3s both;
}

.exhibition-info {
    animation: slideInRight 0.8s ease 0.5s both;
}

.detail-item {
    animation: fadeInUp 0.6s ease both;
}

.detail-item:nth-child(1) { animation-delay: 0.7s; }
.detail-item:nth-child(2) { animation-delay: 0.8s; }
.detail-item:nth-child(3) { animation-delay: 0.9s; }
.detail-item:nth-child(4) { animation-delay: 1.0s; }

/* Hover Effects */
.poster-item {
    transition: all 0.3s ease;
}

.poster-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.anchor-pill {
    position: relative;
    overflow: hidden;
}

.anchor-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.anchor-pill:hover::before {
    left: 100%;
}

/* Focus States for Accessibility */
.anchor-pill:focus,
.search-btn:focus,
.language-btn:focus {
    outline: 2px solid #38b2ac;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .anchor-nav,
    .footer {
        display: none;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .exhibition-info {
        color: black !important;
    }
    
    .detail-label {
        background: #f0f0f0 !important;
        color: black !important;
    }
}
/* Highlights Section - QR Code Submission */
.highlights-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.submission-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.qr-section {
    text-align: center;
    margin-bottom: 50px;
}

.qr-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #ea5b38;
    display: inline-block;
    max-width: 500px;
    width: 100%;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.qr-title {
    font-size: 24px;
    color: #ea5b38;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.qr-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.submission-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #38b2ac;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
}

.method-item h4 {
    color: #38b2ac;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.method-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .submission-content {
        margin-top: 30px;
        width: 100%;
    }
    
    .qr-container {
        max-width: 100%;
        padding: 25px;
        margin: 0 15px;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }
    
    .qr-title {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .qr-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .submission-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        width: 100%;
    }
    
    .method-item {
        padding: 20px;
        width: 100%;
    }
    
    .method-item h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .method-item p {
        font-size: 14px;
    }
}