/* ====================================
   Pucre アプリの使い方ページ
   （ベース: simple-style.css + support-style.css）
   ==================================== */

/* 目次 */
.guide-toc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.guide-toc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 16px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.guide-toc-item:not(.is-soon):hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.guide-toc-item.is-soon {
    opacity: 0.5;
    cursor: default;
}

.guide-toc-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.guide-toc-label {
    font-size: 18px;
    font-weight: 700;
}

.guide-toc-note {
    font-size: 13px;
    color: var(--text-light);
}

/* ステップカード */
.guide-section {
    margin-bottom: 64px;
}

.guide-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.guide-step-text {
    grid-template-columns: 1fr;
}

.guide-step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.guide-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.guide-step-reward {
    display: inline-block;
    padding: 4px 12px;
    background: #ECFDF5;
    color: var(--primary-dark);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.guide-step-list {
    margin: 0 0 16px 20px;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.9;
}

.guide-note {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.guide-note i {
    margin-top: 3px;
    color: var(--secondary-color);
}

.guide-note-warn {
    background: #FEF2F2;
    color: #B91C1C;
}

.guide-note-warn i {
    color: #DC2626;
}

/* キャプチャ */
.guide-shots {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-shot {
    margin: 0;
}

.guide-shot img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

/* 全画面キャプチャは縦長なので幅を抑える */
.guide-shot-phone img {
    max-width: 280px;
    margin: 0 auto;
}

.guide-shot figcaption {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

/* 準備中セクション */
.guide-soon {
    text-align: center;
    background: var(--white);
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    padding: 48px 32px;
}

.guide-soon h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.guide-soon p {
    color: var(--text-light);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .guide-toc {
        grid-template-columns: 1fr;
    }

    .guide-step {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .guide-step-title {
        font-size: 20px;
    }
}
