/**
 * ハマリスタへの手引き：使い方ページ専用CSS
 * guide/index.php で使用
 * 体裁は about/about.css に揃えた構造で、.guide- 接頭辞で衝突を回避
 */

.guide-content {
    background: white;
    padding: 0;
}

/* セクション共通 */
.guide-section {
    padding: 24px 20px;
    border-bottom: 1px solid #eee;
}
.guide-section:last-child {
    border-bottom: none;
}

/* イントロ（機能一覧と注意書き） */
.guide-intro-lead {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 14px;
}
.guide-feature-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}
.guide-feature-list li {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    padding: 6px 0;
}
.guide-feature-list .guide-login-mark {
    margin-left: 6px;
    font-size: 12px;
    font-weight: normal;
    color: #888;
}
.guide-note {
    font-size: 12px;
    color: #777;
    line-height: 1.7;
    margin: 4px 0;
}

/* 各機能セクションのタイトル（番号バッジ付き） */
.guide-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.guide-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}
.guide-section-title .guide-login-mark {
    margin-left: auto;
    font-size: 12px;
    font-weight: normal;
    color: #888;
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 12px;
    border: none;
}

/* 本文テキスト */
.guide-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}
.guide-text p {
    margin-bottom: 14px;
}
.guide-text p:last-child {
    margin-bottom: 0;
}

/* 画像エリア */
.guide-image-block {
    text-align: center;
    margin: 20px 0 0;
}
.guide-image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.guide-image-caption {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

/* CTA（当サイトについてへ戻すリンク） */
.guide-cta {
    text-align: center;
    padding: 32px 20px;
    background: #f7f9fa;
    border-bottom: 1px solid #eee;
}
.guide-cta p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}
.guide-link-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 12px;
}
.guide-link-btn:hover {
    background: #2980b9;
    color: white;
    text-decoration: none;
}
