/* ページヘッダー */
.page-header {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.header-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-image h1 {
    position: absolute;
    top: 10%;
    left: 28%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.4rem;
    font-weight: bold;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    border-top: 3px solid #92bb44;
    width: 400px; /* 線の横幅を指定 */
    text-align: left; /* テキストを中央揃え */
    padding: 0 50px 0;
}

.header-image p {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;          
    text-align: left;
}

@media (max-width: 768px) {
    .header-image h1 {
        font-size: 24px;
        width: 192px;
        left: 30%;
        top: 20%;
        padding-left: 10px;
    }


    .header-image p {
        font-size: 18px;
        width: 300px; /* 線の横幅を指定 */
        left: 50%;
        top: 55%;
    }
}

/* メインコンテンツ */
.privacy-content {
    padding: 20px 10px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

section {
    line-height: 1.8;
}

section h2 {
    font-size: 24px;
    color: #6d8c32;
    margin-bottom: 15px;
    border-bottom: 2px solid #6d8c32;
    padding-bottom: 5px;
}

section h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

section ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}

section ul li {
    margin-bottom: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .header-image h1 {
        font-size: 24px;
    }

    .container {
        padding: 0 15px;
    }

    section h2 {
        font-size: 20px;
    }

    section h3 {
        font-size: 18px;
    }
}
