
        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        .nav {
            background: #69b076;
            padding: 1rem 2rem;
            margin: 0;
        }

        .nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav li {
            margin-right: 2rem;
        }

        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        .hero {
            background: linear-gradient(45deg, #69b076, #88c993);
            color: white;
            padding: 1rem 0.5rem;
            text-align: center;
        }

        .hero h1 {
            margin: 0;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

.card {
    /* ↓ 新しいスタイル */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.08);
    border-color: rgba(105, 176, 118, 0.2);
    position: relative;
    }
.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}
        .card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-date {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .card-title {
            color: #333;
            font-size: 1.25rem;
            margin: 0 0 0.5rem 0;
            font-weight: 600;
            line-height: 1.4;
        }

        .card-summary {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0.5rem 0;
        }

        .card-link {
            display: inline-block;
            margin-top: 1rem;
            color: #468652;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .card-link:hover {
            text-decoration: underline;
        }
        
/* パンくずリスト */
.breadcrumb {
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: #69b076; /* リンクの色を設定 */
    text-decoration: none;
    margin-right: 0.5rem;
}

.breadcrumb span {
    color: #666; /* パンくずの区切り用の色 */
    margin-right: 0.5rem;
}

.breadcrumb span::before {
    content: ">"; /* 区切り文字として矢印を表示 */
    margin-right: 0.5rem;
    color: #999;
}

.breadcrumb span:first-child::before {
    content: ""; /* 最初の要素には区切り文字を表示しない */
}

.breadcrumb a:hover {
    text-decoration: underline; /* ホバー時に下線を追加 */
}

/* 記事ページスタイル */
.article {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.article-header-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 2rem 3rem;
}

.article-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.article-title {
    font-size: 2rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 5px double #69b076;
    padding-bottom: 0.5rem;
}

.article-body ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.article-body li {
    margin-bottom: 0.8rem;
}

.article-nav {
    border-top: 1px solid #eee;
    margin-top: 3rem;
    padding-top: 2rem;
}

.article-nav a {
    color: #69b076;
    text-decoration: none;
    font-weight: 500;
}

.article-nav a:hover {
    text-decoration: underline;
}
/* 記事内画像のスタイル */
.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-image figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b06a80;
    font-style: italic;
}

/* タグ用のスタイル追加 */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.tag {
    background: rgba(105, 176, 118, 0.1);
    color: #468652;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    display: inline-block;
}
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
        }

/* ハンバーガーメニュー用の追加スタイル */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* 引用風の強調ボックス（現在のboard class） */
.board {
    background: #eff6f0;
    border-left: 4px solid #6AB09A;
    padding: 0.5rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

/* シンプルな箇条書きリスト */
.simple-list {
    list-style-type: none;
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.simple-list li {
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.simple-list li::before {
    content: "☑️";
    color: #69b076;
    position: absolute;
    left: -1.2rem;
}

/* 特徴リスト（シンプルなボックス） */
.feature-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 1rem; /* 内側の余白を均等に設定 */
    margin-bottom: 0.8rem;
    background: #dff0d8; /* 背景色 */
    border-radius: 6px; /* 角を丸くする */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 軽い影を追加（オプション） */
}


/* 手順・説明リスト */
.step-list {
    counter-reset: step;
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.step-list > li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.step-list > li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    background: #69b076;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* 強調用のシンプルなボックス */
.highlight-box {
    background-color: #f1f1f1; /* 淡い背景色（グレー系） */
    padding: 0.8rem 1.2rem; /* 内側の余白を設定 */
    margin: 1rem 0; /* 上下の余白を設定 */
    border-radius: 6px; /* 角を丸くして柔らかい印象に */
    font-size: 1rem; /* 適度な文字サイズ */
    line-height: 1.6; /* 読みやすい行間 */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* 軽い影を追加（オプション） */
}

/* 脚注スタイル */
.footnote {
    font-size: 0.8em;
    color: gray;
    margin-top: 0.5em;
}
.footnote a {
    color: blue;
    text-decoration: none;
}

.footnote a:hover {
    text-decoration: underline;
    color: darkblue;
}

  .prompt-box {
    background-color: #f9f9f9; /* 淡い背景色 */
    padding: 16px;           /* 適度な余白 */
    border-radius: 8px;      /* 角を少し丸くする（お好みで） */
    font-size: 14px;         /* 少し小さな文字サイズ */
    line-height: 1.6;        /* 読みやすい行間 */
    color: #333;             /* 文字色 */
  }

.repost-note {
    font-size: 12px; /* 小さめの文字サイズ */
    color: #555; /* 目立ちすぎない中間的な文字色 */
    text-align: center; /* 中央揃え */
    margin-top: 24px; /* 記事との間に適度な余白 */
    margin-bottom: 24px; /* フッターとの間にも余白 */
    background-color: #f9f9f9; /* 淡い背景色 */
    padding: 8px; /* 適度な内側の余白 */
    border-radius: 5px; /* 枠の角を少し丸める */
}

 /* モバイル対応の修正 */
@media (max-width: 768px) {
.nav {
    background: #69b076;
    padding: 0.5rem 1rem;
    margin: 0;
    min-height: 60px; /* 最小高さを確保 */
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    position: relative; /* ハンバーガーメニューの基準位置 */
}

    .menu-toggle {
        display: block; /* モバイルビューで表示させる */
        height: 40px;  /* ボタンの高さを増やして、視認性を改善 */
        width: 40px;  /* ボタンの幅を増やして、視認性を改善 */
        flex-direction: column;
        justify-content: center;
    }
    
    .menu-toggle span {
        display: block;
        width: 28px; /* 幅を増やして視認性を改善 */
        height: 4px; /* 線を少し太くして視認性を改善 */
        background: white;
        margin: 6px 0; /* 線同士の間隔を少し広げる */
        transition: 0.3s;
    }    
    /* ハンバーガーメニューのアニメーション */
    .nav.open .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav.open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav.open .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #69b076;
        padding: 0;
        margin: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav.open ul {
        display: flex;
    }

    .nav li {
        margin: 0;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav li a {
        padding: 1rem;
        display: block;
    }

    /* ヒーローセクションの修正 */
    .hero {
        position: relative;
        min-height: 200px;
        padding: 1rem 0.6rem;
    }

    .column-hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }

    .hero p {
        font-size: 1rem;
        position: relative;
        z-index: 1;
    }
    /* カードグリッドの修正 */
    .grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .card {
        margin-bottom: 1.5rem;
    }
    
        .article-image img {
        height: 160px; /* モバイルでは少し小さく */
    }

}
