/* 公開サイト用スタイル */

/* 全体のスタイル */
body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* ヘッダー */
header {
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar {
    padding: 0.8rem 1rem;
}

/* フッター */
footer {
    margin-top: 3rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* カード */
.card {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-weight: 600;
}

.card-header {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: none;
    padding: 1rem 1.25rem;
}

/* 記事スタイル */
.blog-post {
    margin-bottom: 2rem;
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.blog-post h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 1.2rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.blog-content blockquote {
    border-left: 4px solid #eee;
    padding: 0.5rem 1rem;
    color: #666;
    font-style: italic;
    margin: 1.5rem 0;
    background-color: #f9f9f9;
    border-radius: 0 5px 5px 0;
}

/* Amazon商品カード */
.amazon-product-card {
    display: flex;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.amazon-product-card:hover {
    border-color: #dee2e6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.amazon-products-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.amazon-products-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

.amazon-product-image {
    flex: 0 0 120px;
    margin-right: 1.5rem;
}

.amazon-product-image img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    border-radius: 5px;
}

.amazon-product-info {
    flex: 1;
}

.amazon-product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.amazon-product-price {
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.amazon-button {
    display: inline-block;
    background-color: #FF9900;
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.amazon-button:hover {
    background-color: #e68a00;
    color: #fff;
    transform: translateY(-2px);
}

/* 共有ボタン */
.share-buttons {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.share-buttons .btn {
    margin: 0 0.3rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
}

/* 関連記事 */
.related-posts {
    margin-top: 3rem;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .amazon-product-card {
        flex-direction: column;
    }
    
    .amazon-product-image {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
}

/* ページネーション */
.pagination {
    margin: 2rem 0;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-link {
    color: #007bff;
}

/* 検索フォーム */
.navbar .form-control {
    border-radius: 20px 0 0 20px;
    border: none;
}

.navbar .btn {
    border-radius: 0 20px 20px 0;
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.blog-post, .card, .amazon-product-card {
    animation: fadeIn 0.6s ease-out;
}