/* つぐみページ専用スタイル */

/* H1タグのスタイル上書き */
#hpb-title h1 {
    text-indent: 0 !important;
    background-image: none !important;
    height: auto !important;
    width: auto !important;
    margin: 20px 0 !important;
    padding: 10px 0 !important;
    font-size: 24px !important;
    font-weight: bold !important;
    color: #333 !important;
    text-align: center !important;
}

/* ダウンロード画像のマウスオーバー効果 */
.tsugumi-download-image {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tsugumi-download-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ダウンロード説明のスタイル */
.download-instructions {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.download-instructions h4 {
    color: #495057;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.download-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.download-instructions li {
    margin-bottom: 5px;
    color: #6c757d;
}

.download-instructions .note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 8px;
    margin-top: 10px;
    font-size: 13px;
    color: #856404;
} 