/**
 * LANTES Japan - 法律相关页面样式
 * 隐私政策、利用规约、网站地图等页面的通用样式
 */

/* === 页面英雄区域（共通ページ英雄区域） === */
.page-hero {
    background-color: var(--washi-base-light);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--washi-gradient-overlay);
    z-index: 1;
}

.page-hero .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* === 法务内容区域（法務コンテンツセクション） === */
.legal-content {
    background-color: var(--washi-bg-main);
}

.legal-content .washi-card {
    max-width: none;
    margin: 0;
}

.legal-content .update-date {
    font-size: 0.9rem;
    font-style: italic;
    border-bottom: 1px solid var(--washi-border-light);
    padding-bottom: 0.75rem;
}

.legal-content .section-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--washi-accent-light);
}

.legal-content .section-subtitle:first-of-type {
    margin-top: 0;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content ul.ps-4 {
    padding-left: 3rem !important;
}

.legal-content a {
    font-weight: 500;
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--washi-accent-dark);
}

/* 法务相关页面的响应式调整（法務関連ページのレスポンシブ調整） */
@media (max-width: 767.98px) {
    .page-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-content .section-subtitle {
        font-size: 1.2rem;
    }
} 