/* プライバシーポリシー専用スタイル */

.policy-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    line-height: 1.8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.policy-section h2 {
    font-size: 1.3rem;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 15px;
    margin-bottom: 20px;
}

.policy-section p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-section li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

/* お問い合わせボックス */
.contact-box {
    background: #f1f8ff;
    border: 1px solid #3498db;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.email-address {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: bold;
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: inline-block;
}

.contact-note {
    font-size: 0.8rem;
    color: #777;
    margin-top: 10px;
}

/* 「ホームへ戻る」ボタンのエリアをしっかり確保 */
.back-home {
    text-align: center;
    margin: 50px 0; /* 上下にしっかり余白を作る */
    padding-bottom: 20px;
}

/* ボタン自体の見栄え（共通style.cssのbtnを上書きする場合） */
.home-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #34495e;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* 浮き上がらせて見やすく */
    transition: transform 0.2s;
}

.home-btn:hover {
    transform: translateY(-2px);
    background-color: #2c3e50;
}

/* フッターとの重なりを防ぐ */
.policy-footer {
    border-top: 1px solid #eee;
    padding: 20px 0 40px;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    background: #fdfdfd; /* わずかに色をつけてボタンと区別 */
}