/* ヒーローセクション */
.subpage_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 0 var(--section-margin) 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.subpage_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/25img/hero_back.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.subpage_hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.subpage_hero_content{
    padding: 80px 0 0 0;
  
}
.subpage_hero_content h2.title{
    color: #fff;
}
.subpage_hero_content h3.title{
    color: #fff;
}
.subpage_hero_content p.explain{
    color: #fff;
}
.subpage_hero_content{
    position: relative;
    z-index: 4;
}



/* プライバシーポリシーコンテンツ */
.subpage_content {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--page-padding);
    color: #fff;
}

.subpage_content section {
    margin-bottom: var(--section-margin6);
}

.subpage_content h2 {
    font-size: var(--font-l);
    font-weight: 700;
    margin-bottom: var(--section-margin2);
    color: #fff;
}

.subpage_content h3 {
    font-size: var(--font-l);
    font-weight: 600;
    margin-bottom: var(--section-margin2);
    color: #fff;
}

.subpage_content p {
    font-size: var(--font-m);
    line-height: 1.8;
    margin-bottom: var(--section-margin2);
    color: #fff;
}

.subpage_content ol,
.subpage_content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.subpage_content li {
    font-size: var(--font-m);
    line-height: 1.8;
    margin-bottom: var(--section-margin2);
    color: #fff;
}

.subpage_content a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.subpage_content a:hover {
    color: #fff;
    opacity: 0.8;
}

.subpage_content .last-updated {
    font-size: var(--font-s);
    color: #fff;
    text-align: right;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .subpage_content {
        padding: 2rem 1rem;
    }

    .subpage_content h2 {
        font-size: var(--font-l);
    }

    .subpage_content h3 {
        font-size: var(--font-l);
    }
}
