@charset "utf-8";

/* ==========================================================================
   プライバシーポリシー ページ専用スタイル
   ※「店舗一覧」「パチンコ関連リンク」のデザイン・配色・余白・ホバーを100%完全同期
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Lower Hero Section (ページヘッダー)
   ※他ページの共通スタイル（ブレイクポイント960px等）に完全準拠
   -------------------------------------------------------------------------- */
.lower-hero {
    width: 100%;
    padding: 100px 0 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.section-title-area .section-title {
    font-size: 3rem;
    color: #333333;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.section-title-area .section-subtitle {
    font-size: 1rem;
    color: #c5a059; /* 共通ゴールド */
    font-weight: 600;
    letter-spacing: 0.2em;
}

@media (max-width: 960px) {
    .lower-hero {
        padding: 80px 0 40px;
    }
    .section-title-area .section-title {
        font-size: 2.2rem;
    }
}

/* --------------------------------------------------------------------------
   2. レイアウトコンテナ
   ※店舗一覧の「横幅1000px」および共通余白に軸を合わせる
   -------------------------------------------------------------------------- */
.privacy-page-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 100px;
    color: #333333;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.8;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .privacy-page-container {
        padding: 40px 15px 60px;
    }
}

/* --------------------------------------------------------------------------
   3. 各セクション・見出し
   -------------------------------------------------------------------------- */
.privacy-section {
    margin-bottom: 60px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

/* セクションタイトル：ゴールドの左線アクセント（店舗一覧・リンク集と完全同期） */
.privacy-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    padding-left: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #c5a059;
    position: relative;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
    .privacy-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
}

/* --------------------------------------------------------------------------
   4. リード文・基本方針
   -------------------------------------------------------------------------- */
.privacy-lead {
    background-color: #ffffff;
    border: 1px solid #e0e0e0; /* 店舗カードと同じマテリアル感 */
    padding: 40px;
    border-radius: 4px;
}

.privacy-lead p {
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-lead p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .privacy-lead {
        padding: 30px 20px;
    }
}

/* --------------------------------------------------------------------------
   5. ポリシー詳細ブロック（1〜9条番）
   -------------------------------------------------------------------------- */
.privacy-body {
    display: flex;
    flex-direction: column;
    gap: 40px; /* 店舗一覧のカード間隔と同じ40pxに同期 */
}

/* 各条文を1つの白いブロックとして美しく独立化 */
.privacy-block {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ほんのり浮かび上がるホバーエフェクト（店舗カード等と同等の質感） */
.privacy-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-block h3 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

/* 見出し下のゴールドの下線（店舗一覧の store-name::after と完全同期） */
.privacy-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #c5a059;
}

.privacy-block p {
    margin-bottom: 15px;
    text-align: justify;
    color: #333333;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .privacy-block {
        padding: 30px 20px;
    }
    .privacy-block h3 {
        font-size: 1.15rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
}

/* --------------------------------------------------------------------------
   6. リストスタイルの構造化
   -------------------------------------------------------------------------- */
/* 算用数字リスト（第2条、第7条など） */
.privacy-list.decimal {
    list-style-type: none;
    counter-reset: item;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-list.decimal > li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #333333;
}

.privacy-list.decimal > li:last-child {
    margin-bottom: 0;
}

/* ナンバリングをゴールドの太字にしてアクセントに */
.privacy-list.decimal > li::before {
    counter-increment: item;
    content: "(" counter(item) ")";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #c5a059;
}

/* 特殊ネストリスト（第4条など） */
.privacy-list-sub {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 0 0;
}

.privacy-list-sub > li {
    margin-bottom: 20px;
    color: #333333;
}

.privacy-list-sub > li:last-child {
    margin-bottom: 0;
}

/* 中の「・」で始まる箇条書き */
.privacy-sub-bullet {
    list-style: none;
    padding-left: 15px;
    margin: 12px 0 0 0;
    color: #555555;
    font-size: 0.95rem;
    border-left: 2px solid #eef0f2; /* ネストの視認性を高める左線 */
}

.privacy-sub-bullet > li {
    margin-bottom: 8px;
    text-indent: -0.5em;
    padding-left: 0.5em;
}

.privacy-sub-bullet > li:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. 受付窓口・コンポーネントカード（第8条）
   -------------------------------------------------------------------------- */
.privacy-contact-card {
    background-color: #f8f9fa; /* 店舗ヘッダー等と同じ淡いグレー */
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 4px;
    margin-top: 30px;
}

.privacy-contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #12458f; /* コーポレートディープブルー */
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.privacy-contact-card h4:first-of-type {
    margin-top: 0;
}

.privacy-contact-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333333;
    margin-top: 25px;
    margin-bottom: 12px;
}

/* 住所情報のスタイル：ブランド店舗情報カードと親和性の高いデザイン */
.privacy-address {
    font-style: normal;
    background-color: #ffffff;
    border-top: 3px solid #c5a059; /* 上部にゴールドのアクセントライン */
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
    margin: 15px 0;
    border-radius: 0 0 4px 4px;
}

.privacy-address strong {
    font-size: 1.05rem;
    color: #12458f; /* 担当宛名をブルーにしてスマートに */
    display: inline-block;
    margin-bottom: 8px;
}

/* ダウンロードリンク集：店舗詳細ボタンなどのレイアウト（2列）と完全同期 */
.privacy-download-links {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* PC時は美しい2列 */
    gap: 10px;
}

.privacy-download-links li {
    margin: 0;
}

.privacy-download-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #12458f; /* 外部ボタン（.btn-external）の仕様に準拠 */
    padding: 14px 10px;
    border-radius: 0; /* 四角いモダンなボタンに統一 */
    color: #12458f;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    box-sizing: border-box;
    transition: all 0.3s ease;
    width: 100%;
}

/* PDFアイコン（擬似要素）の調整 */
.privacy-download-links li a::before {
    content: "PDF";
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #d32f2f; /* DMMボタン等の赤に合わせた上品な赤 */
    padding: 2px 4px;
    border-radius: 2px;
    margin-right: 8px;
    line-height: 1;
}

/* ホバーアクション：他リンク・ボタン（.btn-external:hover）と挙動を統一 */
@media (hover: hover) {
    .privacy-download-links li a:hover {
        background-color: #f0f4f9;
        border-color: #c5a059;
        color: #c5a059;
    }
}

/* 本人確認書類についての枠 */
.privacy-doc-box {
    background-color: #ffffff;
    border: 1px dashed #cccccc;
    padding: 25px;
    border-radius: 4px;
    margin: 15px 0;
}

.privacy-doc-box h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333333;
    margin-top: 0;
    margin-bottom: 10px;
}

.privacy-doc-box h6:not(:first-of-type) {
    margin-top: 25px;
}

.privacy-doc-box p {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .privacy-contact-card {
        padding: 30px 20px;
    }
    .privacy-download-links {
        grid-template-columns: 1fr; /* スマホでは押しやすい1列縦並び */
    }
}

/* --------------------------------------------------------------------------
   8. アニメーション制御（既存の JavaScript / main.js と100%連動）
   -------------------------------------------------------------------------- */
.reveal {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

body.js-enabled .reveal {
    opacity: 0;
    transform: translateY(20px);
}

body.js-enabled .reveal.active {
    opacity: 1;
    transform: translateY(0);
}