/* ========================================
   新着情報記事用CSS
======================================== */

/* 記事全体のコンテナ */
.myspots-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #333;
}

/* 導入部（ピンクグラデーション背景） */
.myspots-intro {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    color: #ec4899;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.myspots-intro h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

/* セクション区切り */
.myspots-section {
    margin: 50px 0;
}

/* 見出しスタイル */
.myspots-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ec4899;
    margin: 50px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #f472b6;
}

.myspots-article h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fb7185;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #f472b6;
}

/* 段落 */
.myspots-article p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.8;
}

/* 強調テキスト */
.myspots-article strong {
    color: #ec4899;
    font-weight: 700;
}

/* リスト */
.myspots-list {
    margin: 20px 0;
    padding-left: 30px;
}

.myspots-list li {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
}

.myspots-list li::marker {
    color: #f472b6;
}

/* 機能アイテム */
.myspots-feature-item {
    background: #FFF5F7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #f472b6;
}

.myspots-feature-item h3 {
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
}

.myspots-feature-item p {
    margin: 0;
}

/* CTAボックス */
.myspots-cta-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid #f59e0b;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: center;
}

.myspots-cta-box h3 {
    color: #92400e;
    margin: 0 0 15px 0;
    padding: 0;
    border: none;
    font-size: 22px;
}

.myspots-cta-box p {
    color: #78350f;
    margin: 10px 0;
}

.myspots-cta-button-wrapper {
    margin-top: 20px;
}

.myspots-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.myspots-cta-button:hover {
    background: linear-gradient(135deg, #db2777, #ec4899);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
    color: white;
}

/* フッター注釈 */
.myspots-footer-note {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.myspots-footer-note p {
    margin: 10px 0;
    font-size: 14px;
}

/* 投稿者情報を非表示 */
.posted-by.vcard.author {
    display: none !important;
}

.author-name {
    display: none !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .myspots-article {
        padding: 20px 15px;
    }

    .myspots-intro h1 {
        font-size: 20px;
    }

    .myspots-article h2 {
        font-size: 24px;
    }

    .myspots-article h3 {
        font-size: 18px;
    }

    .myspots-article p {
        font-size: 15px;
    }

    .myspots-cta-box {
        padding: 20px;
    }

    .myspots-cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }
}
