@charset "UTF-8";

/* ========================================================================== 
   プライバシーポリシー ページ専用スタイル - アネックス・カラー版
   ========================================================================== */

/* --- 1. ページヒーローエリア --- */
.page-hero {
    width: 100%;
    min-height: 200px;
    height: 12.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 140px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.page-hero .section-title {
    color: #fff;
    font-size: 36px;
    margin: 0;
    line-height: 1.2;
}

.page-hero .section-title span {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-top: 5px;
    font-weight: normal;
}

/* --- 2. イントロダクション 見出し --- */
.section-padding-concept { 
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 0 20px; 
}

.main-facility-title {
    text-align: center;
    font-size: 32px;
    color: #7a5a34; /* 変更：青→茶 */
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.main-facility-title span {
    display: block;
    font-size: 16px;
    color: #b39471; /* 変更：水色→ベージュ */
    margin-top: 8px;
    text-transform: uppercase;
}

/* --- 3. 基本方針（リッチ背景コンセプトボックス） --- */
.room-concept-box.facility-concept-box {
    background: linear-gradient(135deg, #7a5a34 0%, #4d3921 100%); /* 変更：茶グラデーション */
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 60px 0; 
    margin-top: 40px;
    margin-bottom: 60px; 
    text-align: center;
}

.room-concept-box.facility-concept-box .section-title-area::before {
    content: "PRIVACY";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 140px;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    z-index: 0;
}

.room-concept-box.facility-concept-box .section-title {
    color: #ffffff !important;
    position: relative;
    z-index: 2;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
}

.room-concept-box.facility-concept-box .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #c5a059; /* 変更：ゴールド */
    margin: 15px auto 0;
}

.room-concept-box.facility-concept-box .concept-lead {
    color: #ffffff !important;
    line-height: 2 !important; 
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* --- 4. プライバシーポリシー本文エリア --- */
#main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.privacy-section-wrapper {
    padding: 0 20px;
}

.privacy-item h2 {
    font-size: 26px;
    color: #7a5a34; /* 変更：茶 */
    border-bottom: 2px solid #d6c6b0; /* 変更：ベージュ */
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.privacy-item h3 {
    font-size: 19px;
    color: #7a5a34; /* 変更：茶 */
    margin: 40px 0 15px;
    padding: 8px 15px;
    border-left: 5px solid #b39471; /* 変更：ベージュ */
    background-color: #f9f7f2; /* 変更：薄ベージュ */
}

.privacy-item p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #444;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-list li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
    color: #444;
}

.privacy-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #b39471; /* 変更：ベージュ */
    font-weight: bold;
}

/* --- 5. PDFダウンロードエリア --- */
.pdf-download-area {
    background: #fdfdfd;
    border: 1px solid #d6c6b0; /* 変更：ベージュ */
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.pdf-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.pdf-list li a {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #7a5a34; /* 変更：茶 */
    color: #7a5a34; /* 変更：茶 */
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.pdf-list li a:hover {
    background-color: #7a5a34;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(122, 90, 52, 0.2);
}

.pdf-list li a::before {
    content: "PDF";
    font-size: 10px;
    background-color: #d32f2f;
    color: #fff;
    padding: 2px 4px;
    border-radius: 2px;
    margin-right: 12px;
}

/* --- 6. アニメーション & レスポンシブ --- */
.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s ease; 
}
.reveal.is-visible { 
    opacity: 1; 
    transform: translateY(0); 
}

@media (max-width: 768px) {
    .page-hero { 
        height: 200px; 
        margin-top: 60px; 
    }
    .room-concept-box.facility-concept-box .section-title-area::before { 
        font-size: 70px; 
    }
    .room-concept-box.facility-concept-box .section-title { 
        font-size: 26px; 
    }
    .pdf-list { 
        grid-template-columns: 1fr; 
    }
    .main-facility-title { 
        font-size: 26px; 
    }
    .room-concept-box.facility-concept-box {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}