@charset "utf-8";
/* ========================================
   たいわゴルフクラブ - プライバシーポリシーページ専用CSS
   ファイル名: privacy.css
   説明: プライバシーポリシーページ（privacy.html）のスタイル定義
   ======================================== */

/* ========================================
   パンくずリスト
   説明: ページ上部のナビゲーション表示
   ======================================== */

.breadcrumb {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
    padding: 10px 0;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-size: 13px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '|';
    margin: 0 15px;
    color: #666;
    font-weight: normal;
}

.breadcrumb a {
    color: #003d82;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.breadcrumb a:hover {
    background-color: #003d82;
    color: #ffffff;
    transform: translateY(-1px);
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 600;
}

/* ========================================
   ページコンテンツ
   ======================================== */

.privacy-page {
    padding: 60px 0 40px;
    background: #ffffff;
}

.privacy-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-page .wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
}

/* ========================================
   ページタイトル
   ======================================== */

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #003d82;
    margin: 0 0 40px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #003d82;
    text-align: center;
}

/* ========================================
   プライバシーセクション
   ======================================== */

.privacy-section {
    margin-bottom: 45px;
    line-height: 1.8;
}

.privacy-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #003d82;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-left: 4px solid #003d82;
    padding-left: 15px;
}

.privacy-section p {
    font-size: 15px;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.8;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    margin: 15px 0 15px 0;
    padding-left: 30px;
    list-style: disc;
}

.privacy-section li {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.7;
}

.privacy-section li:last-child {
    margin-bottom: 0;
}

.privacy-section a {
    color: #003d82;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.privacy-section a:hover {
    color: #007bff;
    text-decoration: none;
}

/* ========================================
   プライバシーフッター
   ======================================== */

.privacy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.privacy-footer p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

@media (max-width: 768px) {
    .privacy-page .wrap {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .privacy-section h2 {
        font-size: 18px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
    }

    .privacy-section ul {
        padding-left: 25px;
    }

    .privacy-footer {
        margin-top: 40px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-page .wrap {
        padding: 20px 15px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .privacy-section {
        margin-bottom: 30px;
    }

    .privacy-section h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 13px;
    }

    .breadcrumb li {
        font-size: 12px;
    }

    .breadcrumb li:not(:last-child)::after {
        margin: 0 10px;
    }
}
