﻿/* Chrome拡張機能ページ */
.chrome-extensions-list {
    max-width: 800px;
    margin: 0 auto;
}

.extension-item {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.extension-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1d2b53;
}

.extension-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.extension-links {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1d2b53;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2d3b63;
    color: #fff;
}

/* プライバシーポリシーページ */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-policy h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1d2b53;
}

.update-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1d2b53;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.policy-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
}

.policy-section a {
    color: #1d2b53;
    text-decoration: underline;
}

.policy-section a:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .extension-item,
    .privacy-policy {
        padding: 20px;
    }
    
    .extension-title {
        font-size: 20px;
    }
    
    .privacy-policy h3 {
        font-size: 24px;
    }
    
    .policy-section h4 {
        font-size: 18px;
    }
}
