/*
Theme Name: Forest Asset
Theme URI: https://raiseon.jp/
Author: Kenta Otsuka
Description: 山林売買プラットフォーム「Forest Asset」専用テーマ
Version: 1.0
*/

/* * 基本的なスタイルはTailwind CDNで読み込んでいますが、
 * WordPress特有のクラスや補正が必要な場合はここに追記します。
 */

body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* WordPress管理バーが表示されているときのヘッダー調整 */
.admin-bar header.sticky {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar header.sticky {
        top: 46px !important;
    }
}

/* Lucide Icons 調整 */
.lucide {
    display: inline-block;
    vertical-align: middle;
}

/* コンテンツエリア内のスタイル (Prose相当) */
.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1c1917; /* stone-900 */
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* 記事詳細ページのリストスタイル（緑背景のリスト） */
.article-content ul {
    background-color: rgba(209, 250, 229, 0.5); /* emerald-50/50 */
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(209, 250, 229); /* emerald-100 */
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding-left: 0;
}

.article-content ul li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2px;
    flex-shrink: 0;
}

/* 通常のリスト（ul内にulがある場合など）は元のスタイルを維持 */
.article-content ul ul {
    background-color: transparent;
    padding: 0;
    border: none;
    margin: 0.5rem 0 0.5rem 1.5rem;
    list-style-type: disc;
}

.article-content ul ul li::before {
    display: none;
}

/* 段落内の強調ボックス（ポイント） */
.article-content p:has(strong:contains("ポイント")) {
    background-color: rgb(254, 252, 232); /* yellow-50 */
    border: 1px solid rgb(254, 240, 138); /* yellow-200 */
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* より確実な方法：特定のクラスやデータ属性を使用 */
.article-content .point-box {
    background-color: rgb(254, 252, 232);
    border: 1px solid rgb(254, 240, 138);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.article-content .point-box h4 {
    font-weight: 700;
    color: rgb(113, 63, 18); /* yellow-800 */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content .point-box p {
    font-size: 0.875rem;
    color: rgb(28, 25, 23); /* stone-700 */
    margin-bottom: 0;
}
