/* 1000回記念 繋ぎ特設ページ専用スタイル */

.special-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.edition-number {
    display: block;
    font-weight: bold;
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.intro-text {
    font-size: 1.5rem;
    margin: 0;
}

.tsunagi-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .tsunagi-section-grid {
        grid-template-columns: 1fr;
    }
}

.section-title {
    font-size: 1.3rem;
    border: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: bold;
}

.info-card, .odaibako-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* お題箱ボタン */
.odaibako-link-container {
    margin: 2rem 0;
    text-align: center;
}

.odaibako-btn {
    display: inline-flex;
    align-items: center;
    background: #ff6b6b;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.2s;
    box-shadow: 0 4px 0 #d64545;
}

.odaibako-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #d64545;
    color: #fff;
    text-decoration: none;
}

.odaibako-btn:active {
    transform: translateY(2px);
    box-shadow: none;
}

/* 募集の注釈スタイル */
.submission-notes {
    background: #fdf2f2;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.note-item {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.example-list {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    color: #777;
    border-left: 3px solid #ffcaca;
}

.example-list li {
    margin-bottom: 0.3rem;
}

/* 繋ぎとは？ セクション */
.tsunagi-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.more-info {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.more-info h3 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1.2rem;
    text-align: center;
}

/* 大百科ボタンデザイン */
.dic-link-container {
    text-align: center;
}

.dic-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #e33;
    border: 2px solid #e33;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.dic-btn:hover {
    background: #e33;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(238, 51, 51, 0.2);
}

.dic-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* 下部ナビゲーション */
.special-footer-nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-gold {
    background: #ffd700;
    color: #333;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #b8860b;
    transition: all 0.2s;
}

.btn-gold:hover {
    background: #ffcc00;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
    text-decoration: none;
}

@media (max-width: 576px) {
    .special-footer-nav {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-gold, .btn-outline {
        text-align: center;
    }
}