@charset "UTF-8";

/* =============================
common
================================ */
.article__header {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topics__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 5px solid;
    border-image: linear-gradient(90deg, #3C8255 0%, #5A5 100%) 1;
}

.article__header h2 {
    order: 2;
    color: var(--base-gray);
    font-family: "Noto Serif JP";
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 6.4px;
}

.article__header p {
    order: 1;
    color: var(--base-gray);
    font-family: "Noto Serif JP";
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2.1px;
    margin: 4px 0;
}

/* common pc */
@media screen and (min-width:769px) {
    /* .nav__item:nth-child(5) {
        background-color: var(--base-green);
        color: var(--base-white);
    } */

    .article__header {
        height: 380px;
    }

    .article__header h2 {
        font-size: 4.8rem;
        letter-spacing: 9.6px;
    }

    .article__header p {
        font-size: 2rem;
        letter-spacing: 3px;
    }
/* 
    .nav__item.line:nth-child(5)::before {
        background: var(--base-white);
    } */
}

/* pc 769px */

/* =============================
 privacy
================================ */

/* コンテンツ全体のコンテナ */
.privacy__content {
    padding: 0 var(--contentPadding);
    background: var(--base-white); /* 清潔感のある白背景 */
    max-width: 900px;
    margin: 0 auto;
}

/* 導入文（リード文） */
.privacy__lead {
    color: var(--base-gray);
    font-family: "Noto Sans";
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: justify;
}

/* 各セクションの余白 */
.privacy__section {
    margin-bottom: 48px;
}

/* セクションの見出し（1. 個人情報の〜など） */
.privacy__section h3 {
    display: flex;
    align-items: center;
    color: var(--base-gray);
    font-family: "Noto Serif JP"; /* タイトルに合わせて明朝体に */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--base-green); /* contact.cssの緑色をアクセントに */
}

/* 本文テキスト */
.privacy__section p {
    color: var(--base-gray);
    font-family: "Noto Sans";
    font-size: 1.4rem;
    line-height: 2; /* 読みやすさを考慮して広めの行間 */
    padding-left: 19px; /* 見出しのボーダー位置に合わせる */
}

/* =============================
privacy pc (769px以上)
================================ */
@media screen and (min-width: 769px) {
    .privacy__lead {
        font-size: 1.6rem;
        margin-bottom: 80px;
    }

    .privacy__section {
        margin-bottom: 64px;
    }

    .privacy__section h3 {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .privacy__section p {
        font-size: 1.6rem;
    }
}