/* プライバシーポリシー */
/* いらない要素を非表示にする */
.date-tags {
    display: none;
}

/* 幅とか調整 */
.content-in {
    justify-content: center;
}

.wrap {
    width: 100%;
}

.main {
    padding: 0px !important;
    overflow: hidden;
}

.entry-content {
    background-color: var(--white);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.content {
    margin-top: 0px;
}

.footer {
    margin-top: 0px;
}

.article {
    margin-bottom: 0px !important;
}

.article h2 {
    background: none;
}

.article h3 {
    border: none;
}

.article p{
    margin-bottom: 0px;
}

.article ol {
    padding: 0;
}


/* オリジナル */

.entry-header {
    background-color: color-mix(in srgb, var(--green-1) 65%, transparent) !important;
    position: absolute;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 45%;
}

.entry-title {
    font-weight: bold;
    color: var(--white);
    margin-top: 0px;
    text-align: center;
    padding-right: 15%;
    
}

.small-firstview-img {
    margin-top: 0px;
    overflow: hidden;
    width: 100%;
}

.small-firstview-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.privacy-wrapper {
    width: 100%;
}

.privacy-wrapper h2 {
    padding: 0;
    margin-bottom: 20px;
}

.privacy-wrapper p {
    line-height: 2em;
}

.privacy-wrapper ol {
    padding-inline-start: 24px;
    margin: 20px 0;
}

.privacy-wrapper ul {
    max-width: 100%;
}

.privacy-wrapper .no-list ul {
    margin-top: 0 !important;
}

/* リストデザイン */

/* 最上位 ol（1. 2. 3.） */
.custom-list {
    list-style-type: decimal;
    counter-reset: list-counter;
    padding-left: 1.5em;
}

/* ol > li：1. 2. 3. */
.custom-list > li {
    counter-increment: list-counter;
}

.custom-list > li::marker {
    content: counter(list-counter) ". ";
}

/* ul 第2階層：(1), (2), ... */
.custom-list ul {
    list-style: none;
    counter-reset: sub-counter;
    padding-left: 1.5em;
}

.custom-list ul > li {
    counter-increment: sub-counter;
}

.custom-list ul > li::before {
    content: "(" counter(sub-counter) ") ";
    margin-left: -1em;
    display: inline-block;
    width: 2em;
}

/* 3段階目（ul > li > ul > li）：丸数字（①, ②, ③） */
.custom-list ul > li > ul {
    counter-reset: third-counter;
}

.custom-list ul > li > ul > li {
    counter-increment: third-counter;
}

.custom-list ul > li > ul > li::before {
    content: counter(third-counter);
    display: inline-block;
    width: 1.2em;
    margin-left: -1em;
}

.custom-list ul > li > ul > li:nth-child(1)::before { content: "① "; }
.custom-list ul > li > ul > li:nth-child(2)::before { content: "② "; }
.custom-list ul > li > ul > li:nth-child(3)::before { content: "③ "; }
.custom-list ul > li > ul > li:nth-child(4)::before { content: "④ "; }
.custom-list ul > li > ul > li:nth-child(5)::before { content: "⑤ "; }
/* 必要に応じて6以降も続けて書いてください */

/* no-listクラスのul内のliはマーカー非表示 */
.no-list > li {
    list-style: none;
    padding-left: 0;
    text-indent: 0;
    counter-increment: none;
}

/* no-list内のliの ::marker（丸数字や点など）も非表示に */
.no-list > li::marker {
    content: "";
}

/* もし ::before で番号や記号を付けている場合はこれも消す */
.custom-list ul.no-list > li::before {
    content: none;
    display: none;
    margin-left: 0;
    width: auto;
}

.privacy-wrapper a:hover {
    color: #4285f4;
}

@media screen and (min-width: 1024px) {
    .sp-only {
        display: none;
    }

    .small-firstview-img {
        height: 380px;
    }

    .small-firstview-img img {
        height: 380px;
    }

    .entry-header {
        height: 200px;
        top: 252px;
    }

    .entry-title {
        font-size: 48px;
    }

    .not-full-width {
        max-width: 1200px;
    }

    .label-text {
        font-size: 24px;
        width: 713px;
    }

    .privacy-wrapper h2,
    .privacy-wrapper p,
    .privacy-wrapper ol,
    .custom-list-wrapper {
        max-width: 70%;
    }

    .privacy-wrapper ul {
        margin: 20px 0 !important;
    }
    
    .privacy-wrapper .no-list ul {
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 1023px) {
    .pc-only {
        display: none;
    }

    .small-firstview-img {
        height: 130px;
    }

    .small-firstview-img img {
        height: 130px;
    }

    .entry-header {
        height: 50px;
        top: 102px;
    }

    .entry-title {
        font-size: 12.8px;
        margin-bottom: 0px;
    }

    .label-text {
        font-size: 14px;
    }

    .privacy-wrapper h2,
    .privacy-wrapper p,
    .privacy-wrapper ol,
    .custom-list-wrapper {
        width: 90%;
    }

    .privacy-wrapper h2 {
        font-size: 17px;
    }

    .privacy-wrapper p {
        font-size: 15px;
    }

    .privacy-wrapper li {
        font-size: 15px;
    }
    
    .privacy-wrapper ul {
        margin: 10px 0 !important;
    }

    .privacy-wrapper .no-list ul {
        margin-bottom: 10px !important;
    }

}
