/* 記事全体のコンテナ */
.article-container {
    max-width: 700px; /* 読みやすさを重視して幅を絞る */
    margin: 0 auto;
    padding: 60px 20px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.8;
}

/* カテゴリタグ */
.article-category {
    font-size: 13px;
    color: #888;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

/* 記事タイトル */
.article-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif; /* 明朝体で上品に */
}

/* 著者名 */
.article-author {
    font-size: 14px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* 画像スタイル */
.article-image {
    margin: 40px 0;
}
.article-image img {
    width: 100%;
    height: auto;
    display: block;
}
.article-image figcaption {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
    text-align: left;
}

/* セクション見出し */
.section-title {
    font-size: 20px;
    font-weight: bold;
    margin: 60px 0 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-family: "Yu Mincho", "YuMincho", serif;
}

/* 本文テキスト */
.article-body p {
    margin-bottom: 30px;
    letter-spacing: 0.03em;
}

/* 商品カード */
.product-card {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 50px 0;
    text-align: center;
    border-radius: 4px;
}
.product-name {
    font-weight: bold;
    margin-bottom: 5px;
}
.product-price {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}
.btn-primary {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}
.btn-primary:hover {
    opacity: 0.8;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .article-title {
        font-size: 20px;
    }
    .article-container {
        padding: 40px 15px;
    }
}