@charset "UTF-8";

/* プライバシーポリシー独自スタイル */
.page-header {
    text-align: center;
    padding: 80px 0 40px;
}

.page-header .section-title {
    margin-bottom: 10px;
}

.page-header-desc {
    font-size: 0.9rem;
    color: var(--sub-text-color);
    letter-spacing: 0.05em;
}

.privacy-wrap {
    padding-top: 80px; /* ★ 追加: 区切り線と本文の間に余白を追加 */
    padding-bottom: 120px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
}

.privacy-block {
    margin-bottom: 60px;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    letter-spacing: 0.05em;
}

.privacy-block p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.privacy-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-block ul li {
    position: relative;
    padding-left: 1.2em;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 8px;
}

.privacy-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text-color);
}

/* トップページ共通 Email Box スタイル */
.contact-email-box {
    max-width: 100%;
    margin: 40px 0 0;
    text-align: center;
}

.email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    border: 1px solid #eeeeee;
    background-color: #fcfcfc;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.email-link:hover {
    border-color: var(--text-color);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 1;
}

.email-address {
    font-family: var(--font-eng);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-color);
    position: relative;
}

.email-address::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.4s ease;
}

.email-link:hover .email-address::after {
    width: 100%;
}

/* パンくずリストスタイル（Service/About共通デザイン） */
.breadcrumb {
    font-size: 0.75rem; /* 12px */
    color: #999;
    margin-top: 30px;
    margin-bottom: 60px;
    font-family: var(--font-eng);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.breadcrumb a {
    color: #999;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 30px;
    }
    .privacy-wrap {
        padding-top: 40px; /* ★ 追加: スマホ時の区切り線と本文の間の余白 */
        padding-bottom: 80px;
    }
    .privacy-block {
        margin-bottom: 40px;
    }
    .privacy-block h2 {
        font-size: 1.15rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    /* スマホ時の Email Box 調整 */
    .email-address {
        font-size: 1.1rem;
    }
    .email-link {
        padding: 40px 15px;
    }
}