/* ===================================
   LEGAL
   PRIVACY / TOKUSHO
=================================== */


/* -------------------------------
   HERO 共通
------------------------------- */

.privacy_hero_section,
.commerce_hero_section {
    width: 100%;
    background: url("https://npoeurasia.org/wp-content/uploads/2025/03/page-bg-img.jpg") no-repeat center top;
    background-size: cover;
    margin-top: -80px;
}

.privacy_hero_section_inner,
.commerce_hero_section_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1600px;
}

/* PRIVACYだけ元から指定あり */
.privacy_hero_section_inner {
    padding-top: 80px;
}

.privacy_hero_img_wrap,
.commerce_hero_img_wrap {
    width: 60%;
    max-width: 940px;
    height: auto;
    overflow: hidden;
    position: relative;
}

.privacy_hero_img,
.commerce_hero_img {
    display: block;
    border-top-left-radius: 350px;
    border-bottom-left-radius: 350px;
    object-fit: cover;
    overflow: hidden;
}


/* -------------------------------
   MAIN CONTENT 共通
------------------------------- */

.privacy_section,
.commerce_section {
    padding: 24px 0;
}

.privacy_section_inner,
.commerce_section_inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.privacy_section h2,
.commerce_section h2 {
    font-size: 20px;
}

.privacy_section_ttl,
.commerce_section_ttl {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.privacy_categoly_wrap,
.commerce_categoly_wrap {
    margin-top: 24px;
}

.privacy_text_box,
.commerce_text_box {
    margin-left: 24px;
    margin-top: 8px;
    font-size: 16px;
}


/* -------------------------------
   1601px以上
------------------------------- */

@media screen and (min-width: 1601px) {

    .privacy_hero_section_inner img,
    .commerce_hero_section_inner img {
        border-top-left-radius: 350px;
        border-bottom-right-radius: 350px;
        border-bottom-left-radius: 0;
    }
}


/* -------------------------------
   1024px以下
------------------------------- */

@media screen and (max-width: 1024px) {

    .privacy_hero_section,
    .commerce_hero_section {
        height: auto;
    }

    .privacy_hero_section_inner,
    .commerce_hero_section_inner {
        gap: 1rem;
    }

    .privacy_section,
    .commerce_section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .privacy_section .en_ttl,
    .commerce_section .en_ttl {
        line-height: 1.2;
    }
}


/* -------------------------------
   767px以下
------------------------------- */

@media screen and (max-width: 767px) {

    .privacy_hero_section,
    .commerce_hero_section {
        padding-top: 92px;
        padding-bottom: 80px;
    }

    .privacy_hero_section_inner,
    .commerce_hero_section_inner {
        display: block;
    }

    .privacy_hero_img_wrap,
    .commerce_hero_img_wrap {
        width: 100%;
        height: auto;
        margin-top: -92px;
    }

    .privacy_hero_img_wrap img,
    .commerce_hero_img_wrap img {
        width: 100%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 200px;
    }

    .privacy_section_inner,
    .commerce_section_inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}