*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #07070e;
    --bg-secondary: #0d0d18;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --blue-accent: #4a8fff;
    --blue-dim: rgba(74, 143, 255, 0.12);
    --text-primary: #e8e8f2;
    --text-muted: #888899;
    --text-dim: #555566;
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(201, 168, 76, 0.3);
    --serif: 'Noto Serif JP', serif;
    --sans: 'Noto Sans JP', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);

    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

section {
    overflow: hidden;
}

/* ===== スクロールアニメーション ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===== スティッキーヘッダー ===== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7, 7, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header-logo {

    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
}

.header-logo span {
    display: block;
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.2em;

}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #06c755, #04a044);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.3);
}

.header-cta img {
    height: 25px;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(6, 199, 85, 0.45);
}

/* ===== ヒーローセクション ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

/* 背景のパーティクルキャンバス */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, var(--bg-primary) 85%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 32px;
    background: var(--gold-dim);
}

.hero-tagline {
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}

.hero-tagline .accent {
    color: var(--gold);
    position: relative;
}

.hero-sub {
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub strong {
    color: var(--text-primary);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 36px;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #00a2ef, #005c87);
    box-shadow: 0 8px 32px rgba(0, 92, 135, 0.4);
}

.btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 92, 135, 0.55);
}

.btn-line svg {
    width: 22px;
    height: 22px;
}

.hero-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* ===== セクション共通 ===== */
section {
    padding: 100px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 2;
    max-width: 600px;
}

.divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 40px;
}

/* ===== 共感セクション ===== */
#empathy {
    background: var(--bg-secondary);
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.empathy-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.empathy-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-2px);
}

.empathy-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.empathy-text {
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.empathy-text strong {
    display: block;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.empathy-closing {
    margin-top: 48px;
    padding: 32px 40px;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    background: var(--gold-dim);
    text-align: center;
}

.empathy-closing p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--gold-light);
    line-height: 1.5;
}

/* ===== 3カテゴリセクション ===== */
#categories {
    background: var(--bg-primary);
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.category-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.category-card:hover::before {
    opacity: 1;
}

.category-num {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 20px;

}

.category-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.category-icon-wrap.gold {
    background: var(--gold-dim);
}

.category-icon-wrap.blue {
    background: var(--blue-dim);
}

.category-icon-wrap.red {
    background: rgba(255, 80, 80, 0.1);
}

.category-title {
    font-size: .875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.category-examples {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-example-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.category-example-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    min-width: 4px;
}

/* ===== できること・できないことセクション ===== */
#what-we-do {
    background: var(--bg-secondary);
}

.do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 640px) {
    .do-grid {
        grid-template-columns: 1fr;
    }
}

.do-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid;
}

.do-card.can {
    background: rgba(74, 143, 255, 0.05);
    border-color: rgba(74, 143, 255, 0.2);
}

.do-card.cannot {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--border);
}

.do-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.do-card-title {

    font-size: 1rem;
    font-weight: 600;
}

.do-card.can .do-card-title {
    color: var(--blue-accent);
}

.do-card.cannot .do-card-title {
    color: var(--text-muted);
}

.do-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.do-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.do-card.can .do-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-accent);
    font-weight: 700;
}

.do-card.cannot .do-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--text-dim);
}

.do-note {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--gold-dim);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
    font-size: 0.82rem;
    color: var(--gold-light);
    line-height: 1.8;
}

/* ===== 選ばれる理由セクション ===== */
#why-us {
    background: var(--bg-primary);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(266px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.reason-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.reason-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.reason-title {

    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.reason-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== 相談事例セクション ===== */
#cases {
    background: var(--bg-secondary);
}

.cases-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}

.case-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.case-item:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}

.case-num {

    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dim);
    line-height: 1;
    min-width: 48px;
}

.case-category {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.case-title {

    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.case-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.case-result {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #06c755;
}

.case-result::before {
    content: '●';
    font-size: 0.5rem;
}

/* ===== 料金セクション ===== */
#pricing {
    background: var(--bg-primary);
}

.pricing-box {
    margin-top: 48px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-headline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #fff;
    margin-bottom: 0px;
}

.pricing-free {
    display: inline-block;
    font-size: clamp(3.5rem, 7vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    margin: 0px 0;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 2;
    max-width: 500px;
    margin: 0 auto 32px;
}

.pricing-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.pricing-point {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--gold-light);
}

/* ===== 最終CTA ===== */
#final-cta {
    padding: 120px 24px;
    background: url("../picture/hyzt.jpg") center;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.final-headline {

    font-size: clamp(1.6rem, 5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
}

.final-sub {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 2;
    margin-bottom: 12px;
}

.final-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-style: italic;
}

.btn-line-large {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 36px;
    background: linear-gradient(135deg, #06c755, #04a044);
    color: #fff;
    text-decoration: none;
    border-radius: 70px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(6, 199, 85, 0.4);
}

.btn-line-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 52px rgba(6, 199, 85, 0.55);
}

.btn-line-large svg {
    width: 26px;
    height: 26px;
}

/* ===== フッター ===== */
footer {
    padding: 32px 24px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {

    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* ===== フローティングLINEボタン ===== */
#float-line {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #06c755, #04a044);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(6, 199, 85, 0.5);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

#float-line.show {
    opacity: 1;
    transform: translateY(0);
}

#float-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(6, 199, 85, 0.6);
}

#float-line svg {
    width: 20px;
    height: 20px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 640px) {
    .section-inner {
        max-width: 100%;
        margin: 0 auto;
    }

    .category-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 16px;
    }

    section {
        padding: 72px 20px;
    }

    #final-cta {
        padding: 80px 20px;
    }

    .case-item {
        grid-template-columns: 1fr;
    }

    .case-num {
        font-size: 1.5rem;
    }

    .pricing-box {
        padding: 32px 24px;
    }

    .btn-line-large {
        padding: 18px 36px;
        font-size: 0.95rem;
    }

    .empathy-closing {
        padding: 24px 20px;
    }

    #float-line {
        bottom: 20px;
        right: 16px;
        padding: 12px 18px;
        font-size: 0.78rem;
    }
}

/* Mobile LP Header Wrap Fixes */
@media (max-width: 480px) {
    #site-header {
        padding: 12px 12px !important;
        justify-content: space-between !important;
    }

    .header-logo, .header-logo *, .header-cta {
        white-space: nowrap !important;
    }

    .header-logo {
        gap: 6px !important;
    }

    .header-logo img {
        height: 34px !important;
    }

    .header-logo div {
        font-size: 0.75rem !important;
    }

    .header-cta {
        padding: 5px 12px !important;
        font-size: 0.8rem !important;
        gap: 6px !important;
        margin-left: 10px !important;
        line-height: 1 !important;
        align-items: center !important;
    }

    .header-cta svg {
        width: 14px !important;
        height: 14px !important;
    }

    .hero-badge {
        white-space: nowrap !important;
        font-size: 0.65rem !important;
        padding: 6px 14px !important;
    }
}

/* Mobile tags nowrap */
@media (max-width: 480px) {
    .service-tags {
        flex-wrap: nowrap !important;
    }

    .service-tag {
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }
}
.dno{display: none;}
.footerlink a{color: #fff; padding: 0 5px; font-size: 12px; color: #999;}

/* =========================================================
   UFAR - Universal Legal Pages
   Privacy Policy / Terms of Use / Service Disclaimer
   ========================================================= */

.privacy.good,
.terms.good,
.disclaimer.good {
    width: min(920px, calc(100% - 40px));
    margin: 80px auto;
    padding: 50px 56px;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;

    color: #c7ccd5;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.85;

    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.03);
}


/* =========================================================
   Main Title
   ========================================================= */

.privacy.good h1,
.terms.good h1,
.disclaimer.good h1 {
    margin: 0 0 32px;
    padding-bottom: 22px;

    position: relative;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}


/* Title underline */

.privacy.good h1::after,
.terms.good h1::after,
.disclaimer.good h1::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 58px;
    height: 3px;

    background: #db6409;
    border-radius: 3px;
}


/* =========================================================
   Section Titles
   ========================================================= */

.privacy.good h2,
.terms.good h2,
.disclaimer.good h2 {
    margin: 38px 0 14px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}


/* First h2 */

.privacy.good h1 + h2,
.terms.good h1 + h2,
.disclaimer.good h1 + h2 {
    margin-top: 0;
}


/* =========================================================
   Paragraph
   ========================================================= */

.privacy.good p,
.terms.good p,
.disclaimer.good p {
    margin: 0 0 20px;

    color: #bfc5cf;

    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   Lists
   ========================================================= */

.privacy.good ul,
.terms.good ul,
.disclaimer.good ul {
    margin: 0 0 24px;
    padding-left: 24px;
}

.privacy.good li,
.terms.good li,
.disclaimer.good li {
    margin-bottom: 10px;

    color: #bfc5cf;

    font-size: 15.5px;
    line-height: 1.75;
}

.privacy.good li::marker,
.terms.good li::marker,
.disclaimer.good li::marker {
    color: #db6409;
}


/* =========================================================
   Strong / Bold Text
   ========================================================= */

.privacy.good strong,
.terms.good strong,
.disclaimer.good strong {
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   Links
   ========================================================= */

.privacy.good a,
.terms.good a,
.disclaimer.good a {
    color: #db6409;
    text-decoration: none;

    transition: color 0.2s ease;
}

.privacy.good a:hover,
.terms.good a:hover,
.disclaimer.good a:hover {
    color: #f28a38;
    text-decoration: underline;
}


/* =========================================================
   Effective Date / Small Information
   ========================================================= */

.privacy.good .effective-date,
.terms.good .effective-date,
.disclaimer.good .effective-date {
    margin-top: -15px;
    margin-bottom: 30px;

    color: #8f97a3;

    font-size: 14px;
}


/* =========================================================
   Optional Highlight Box
   Works on all 3 pages if needed
   ========================================================= */

.privacy.good .notice,
.terms.good .notice,
.disclaimer.good .notice {
    margin: 28px 0;
    padding: 18px 20px;

    background: rgba(219, 100, 9, 0.06);

    border-left: 3px solid #db6409;
    border-radius: 8px;

    color: #cbd0d8;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   Optional Divider
   ========================================================= */

.privacy.good hr,
.terms.good hr,
.disclaimer.good hr {
    margin: 35px 0;

    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .privacy.good,
    .terms.good,
    .disclaimer.good {
        width: calc(100% - 32px);
        margin: 60px auto;
        padding: 42px 42px;
    }

    .privacy.good h1,
    .terms.good h1,
    .disclaimer.good h1 {
        font-size: 36px;
    }

    .privacy.good h2,
    .terms.good h2,
    .disclaimer.good h2 {
        font-size: 20px;
        margin-top: 34px;
    }

    .privacy.good p,
    .terms.good p,
    .disclaimer.good p {
        font-size: 15.5px;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .privacy.good,
    .terms.good,
    .disclaimer.good {
        width: calc(100% - 28px);
        margin: 40px auto;
        padding: 30px 22px;

        border-radius: 14px;

        font-size: 15px;
    }

    .privacy.good h1,
    .terms.good h1,
    .disclaimer.good h1 {
        margin-bottom: 26px;
        padding-bottom: 18px;

        font-size: 30px;
        line-height: 1.25;
    }

    .privacy.good h1::after,
    .terms.good h1::after,
    .disclaimer.good h1::after {
        width: 48px;
    }

    .privacy.good h2,
    .terms.good h2,
    .disclaimer.good h2 {
        margin: 30px 0 12px;

        font-size: 19px;
        line-height: 1.45;
    }

    .privacy.good p,
    .terms.good p,
    .disclaimer.good p {
        margin-bottom: 18px;

        font-size: 15px;
        line-height: 1.8;
    }

    .privacy.good ul,
    .terms.good ul,
    .disclaimer.good ul {
        padding-left: 21px;
    }

    .privacy.good li,
    .terms.good li,
    .disclaimer.good li {
        margin-bottom: 8px;

        font-size: 14.5px;
        line-height: 1.75;
    }

    .privacy.good .notice,
    .terms.good .notice,
    .disclaimer.good .notice {
        padding: 15px 16px;
        margin: 24px 0;

        font-size: 14px;
    }

}


/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 480px) {

    .privacy.good,
    .terms.good,
    .disclaimer.good {
        width: calc(100% - 20px);
        margin: 28px auto;
        padding: 25px 18px;

        border-radius: 12px;
    }

    .privacy.good h1,
    .terms.good h1,
    .disclaimer.good h1 {
        font-size: 27px;
    }

    .privacy.good h2,
    .terms.good h2,
    .disclaimer.good h2 {
        font-size: 18px;
    }

    .privacy.good p,
    .terms.good p,
    .disclaimer.good p {
        font-size: 14px;
        line-height: 1.75;
    }

    .privacy.good li,
    .terms.good li,
    .disclaimer.good li {
        font-size: 14px;
    }

}