/* site ページ専用スタイル */

.site-content {
    max-width: 100%;
}

.page-title {
    background-color: #ffffff;
    border-bottom: 2px solid #0099cc;
    display: flex;
    align-items: center;

}

.page-title::before {
    content: '';
    display: block;
    width: 12px;
    height: 30px;
    background-color: #0099cc;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 8px;
}

.page-title h2 {
    font-size: 16px;
    color: #0099cc;
    font-weight: bold;
    margin: 0;
    padding: 0;
    
}

/* 説明セクション */
.notice-section {
    background-color: #ffffff;
    border-bottom: 1px solid #d0d0d0;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.notice-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-section li {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

.notice-section li:last-child {
    margin-bottom: 0;
}

.notice-icon {
    color: #0099cc;
    font-weight: bold;
    margin-right: 4px;
}

.notice-section a {
    color: #0099cc;
    text-decoration: none;
}

.notice-section a:hover {
    text-decoration: underline;
}

/* 通販サイトセクション */
.site-section {
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
}

.rakuten-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    justify-items: center;
}

.rakuten-product-item {
    width: 280px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    width: 100%;
    height: 180px; /* 画像の高さ固定 */
    object-fit: cover;
    display: block;
}

.product-title {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    padding: 10px;
    line-height: 1.4;
    min-height: 60px; /* タイトルの最小高さを確保 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 3行で省略 */
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 14px;
    color: #cc0000;
    font-weight: bold;
    padding: 0 10px 10px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .page-title {
        margin-bottom: 15px;
    }

    .page-title h2 {
        font-size: 14px;
        padding: 10px 0;
    }

    .notice-section {
        padding: 10px 12px;
        margin-bottom: 15px;
    }

    .notice-section li {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .site-section {
        padding: 15px;
    }

    .rakuten-product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rakuten-product-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .product-image {
        height: 150px;
    }

    .product-title {
        font-size: 12px;
        min-height: 50px;
    }

    .product-price {
        font-size: 13px;
    }
}
