/*
 * プライバシーポリシーページ (page-privacy-policy.php) 専用スタイル
 */

/* -------------------------------------------
 * 基本レイアウト・共通パーツ
 * ------------------------------------------- */
 .privacy-page-main .container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-page-content {
    background-color: #fff;
    padding: 40px 0 80px;
    position: relative;
    z-index: 10;
}

/* -------------------------------------------
 * ヒーロービュー
 * ------------------------------------------- */
.privacy-hero {
    height: 350px;
    background-image: url('https://asibimo.com/wp-content/uploads/2025/08/privacy-policy-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}
.privacy-hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    z-index: 5;
}

/* -------------------------------------------
 * パンくずリスト
 * ------------------------------------------- */
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 40px;
    color: #888;
}
.breadcrumbs a {
    color: #00b8d4;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* -------------------------------------------
 * 本文コンテンツ
 * ------------------------------------------- */
.privacy-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

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

.privacy-content-body h2 {
    font-size: 1.25rem; /* 20px相当 */
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 0;
    margin-bottom: 20px;
}

.privacy-content-body p {
    margin-top: 0;
    margin-bottom: 1.5em;
}

.privacy-content-body ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 1.5em;
}

.privacy-content-body ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5em;
}

.privacy-content-body ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
}

.privacy-content-body a {
    color: #00b8d4;
    text-decoration: underline;
    word-break: break-all; /* 長いURLがはみ出ないように */
}
.privacy-content-body a:hover {
    text-decoration: none;
}

.contact-info {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
}

.date-enacted {
    text-align: right;
    margin-top: 40px;
    font-size: 15px;
    color: #555;
}


/* -------------------------------------------
 * レスポンシブ対応
 * ------------------------------------------- */
@media (max-width: 768px) {
    .privacy-page-content {
        margin-top: -60px;
        padding-bottom: 60px;
    }
    .privacy-hero {
        height: 280px;
    }
    .privacy-hero-title {
        font-size: 32px;
    }
    .privacy-content-body {
        font-size: 15px;
    }
    .privacy-content-body h2 {
        font-size: 1.1rem;
    }
}