
/* ===========================
font
==============================*/

h2 {
    font-size: 4rem;
    font-weight: 700;
}
h3 {
    font-size: 2.4rem;
    font-weight: 700;
}
p, li {
    font-size: 1.6rem;
    text-align: left;
}
#privacy li {
    list-style:square;
}
@media screen and (max-width:768px) {
    h2 {
        font-size: 2.8rem;
        font-weight: 700;
    }
    h3 {
        font-size: 1.8rem;
        font-weight: 700;
    }
    p, li {
        font-size: 1.4rem;
    }
}


/* ===========================
privacy
==============================*/
.second__header {
    background-image: url(../images/06_privacypolicy/header.jpg);
}
.privacy-haikei {
    padding: 100px 20px;
    position: relative;
    background-color: white;
    border-bottom: 1px solid #3C3B3B;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-haikei::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/06_privacy/background__privacy-本文.jpg) lightgray 50% / cover no-repeat;
    opacity: 0.1; /* ここで背景画像の透過度を設定 */
    z-index: -1;  /* 背景にするために要素の後ろに配置 */
}
/* 必要に応じて文字のスタイルをここに追加 */
.privacy-haikei p, .privacy-haikei h2, .privacy-haikei h3 {
    position: relative; /* 視認性を確保 */
    z-index: 1;
}
#privacy {
    margin: 0 auto;
    max-width: 1000px;
    text-align: left;
}
.privacy--items {
    margin-top: 50px;
    max-width: 1100px;
}
.privacy--item {
    padding-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px solid #999999;
}
.privacy--item ul {
    margin-top: 10px;
    margin-left: 50px;
    width: 95%;
}
.privacy--item p {
    margin-top: 10px;
    margin-left: 30px;
    width: 95%;
}
.privacy--item:last-of-type {
    border-bottom: none;
    margin-bottom: 50px;
}
.privacy--item:first-of-type {
    padding-top: 0;
}
@media screen and (max-width:768px) {
    .privacy-haikei {
        padding: 50px 0;
    }
    .privacy--item ul {
        margin-left: 40px;
        width: 90%;
    }
    .privacy--item p {
        margin-left: 20px;
        width: 90%;
    }
}
/* ===========================
footer
==============================*/
#footer p {
    text-align: center;
}
