/* reset----------------------------- */
@charset "utf-8";
html{
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans JP", "Noto Serif JP", serif;
    margin: 0 !important;
}

section, main, footer, h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,p,form,fieldset {
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6 {
    line-height: 1.1;
}
p{
    line-height: 2;
    text-align: justify;
}
li {
    list-style: none;
}

th {
    font-weight: normal;
}

em {
    font-style: normal;
}

sup {
    position: relative;
    height: 0;
    font-size: .46em;
}

article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary {
    display: block;
}

img {
    width: 100%;
    max-width:100%;
    display: block;
    object-fit: contain;
}
a{
    text-decoration: none;
    color: #FFF;
}

.p-policy_inner {
    width: min(1200px, 90%);
    margin: 0 auto;
    padding: 90px 0 100px 0; /* 左右の余白はmin()が自動計算するため上下のみ */
}


.p-policy_content {
    width: 100%;            
    color: #4a4a4a;
    font-size: 15px;
    line-height: 2.1;        /* キャプチャ画像通りのゆったりと洗練された行間 */
    letter-spacing: 0.04em;
}

/* ■個人情報保護方針（中見出し） */
.p-policy_content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-top: 0;
    margin-bottom: 45px;
    letter-spacing: 0.05em;
    text-align: left;        /* 確実に左寄せ */
}

/* 各段落（文章ブロック） */
.p-policy_content p {
    margin-top: 0;
    margin-bottom: 36px;
    text-align: justify;     /* 日本語文章の右端を綺麗に揃える */
}

/* 1〜5の箇条書きリスト */
.p-policy_list {
    margin: 40px 0;
    padding: 0;
    list-style: none;        /* 画像の美しい整列を再現するため標準番号をリセット */
}

.p-policy_list li {
    margin-bottom: 24px;
    text-align: justify;
    position: relative;
    padding-left: 24px;      /* 行頭の「１．」の分の余白 */
}

/* 擬似要素で「1. 2.」の番号を美しく配置 */
.p-policy_list li:nth-child(1)::before { content: "１．"; position: absolute; left: 0; }
.p-policy_list li:nth-child(2)::before { content: "２．"; position: absolute; left: 0; }
.p-policy_list li:nth-child(3)::before { content: "３．"; position: absolute; left: 0; }
.p-policy_list li:nth-child(4)::before { content: "４．"; position: absolute; left: 0; }
.p-policy_list li:nth-child(5)::before { content: "５．"; position: absolute; left: 0; }

.p-policy_footer {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* 右寄せ */
    gap: 45px;
    width: 100%;
}

.p-policy_owner {
    font-weight: 500;
    color: #333333;
    margin: 0 !important;
    text-align: right;
    line-height: 1.8;
}

.p-policy_end {
    font-weight: 500;
    color: #333333;
    margin: 0 !important;
    letter-spacing: 0.05em;
}


@media screen and (max-width: 768px) {
    .p-policy_inner {
        width: 85%;
        padding: 60px 0;
    }
    .p-policy_content {
        font-size: 14px;
        line-height: 1.9;
    }
}