@charset "utf-8";
/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ファインレーベル株式会社　カスタム対応
	ver.2024.06.06.Custom-Finelabel
	個人情報の取扱い（プライバシーポリシー）　スタイルシート
────────────────────────────────────────
FileName:		/resources/css/privacypolicy.css
Editor:			TRUSTEC
Description:	個人情報の取扱い（プライバシーポリシー）のデザインスタイルシート。
────────────────────────────────────────
2025/05/30:		サンプル開発開始。
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/



/* :::::  [SECTION : MAIN] ::::: */



/* :::::  [SECTION : PRIVACYPOLICY] ::::: */

/* Privacy Policy
--------- --------- --------- ------- */
.privacy-wrapper {
	counter-reset: h-number 0;
}


#privacy-page-title {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/privacy/privacy-intro-background.jpg);
}

@media(max-width: 767px){
    #privacy-page-title {
        background-image: url(../images/privacy/privacy-intro-background.jpg);
        padding-top: 1rem !important;
    }
}


/* Headelines
--------- --------- --------- ------- */
/**	番号付き見出し	*/
.h-number {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	font-size: max(1.2rem, 1.2vw);
}
.h-number::before {
	counter-increment: h-number 1;
	content: counter(h-number)".";
	flex-basis: 1.5em;
	color: #00813d;
}

.h-number.first {
	color: #00813d;
}
.h-number.first::before {
	counter-increment: h-number 0;
	content: "";
	flex-basis: 0;
}



/* Text
--------- --------- --------- ------- */
.privacy-wrapper p {
	margin-left: 2rem;
}

.privacy-wrapper ul,
.privacy-wrapper ol {
	margin-left: 2rem;
}

/* @media
--------- --------- --------- ------- */
/*	DisplayWidth < XS	*/
@media (max-width: 575px) {
	.privacy-wrapper p {
		margin-left: 1rem;
	}

	.privacy-wrapper ul,
	.privacy-wrapper ol {
		margin-left: 1rem;
	}
}


.privacy-wrapper .purpose-list{
	margin-left: 2em;
}
.privacy-wrapper .purpose-list li::marker{
	color: #00813d;
}
@media(max-width: 575px){
	.privacy-wrapper .purpose-list{
		margin-top: 1em;
		margin-left: 0;
	}
}

/* Contact
--------- --------- --------- ------- */
.h-contact {
	margin-left: 2rem;
}

.list-contact {
	margin-left: 2rem;
}
.list-contact-item {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	font-weight: 700;
}
.list-contact-item span a{
	font-weight: 700;
}
.list-contact-item *:first-child {
	flex-basis: 5em;
}
@media (max-width: 575px) {
	.list-contact-item {
		flex-direction: column;
	}
	.list-contact-item *:first-child {
		flex-basis: unset;
	}
}
.list-contact-item .caption-tel::before{
	content: '\f192';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    color: #00813d;
}

.list-update,
.policy-manager{
	font-weight: 700;
}

/* @media
--------- --------- --------- ------- */
/*	DisplayWidth < XS	*/
@media (max-width: 575px) {
	.h-contact {
		margin-left: 1rem;
	}
}



/* Updates
--------- --------- --------- ------- */
.list-update-item {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
}
.list-update-item *:first-child {
	flex-basis: 7em;
}



/* Manager
--------- --------- --------- ------- */
.policy-manager {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	gap: 1em;
}


