@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;
}

.dl-annotation{
    margin: auto !important;
    margin-bottom: 1.5rem !important;
    width: fit-content;
	text-align: center;
    font-size: max(1em, 1vw) !important;
}
@media (max-width: 575px) {
	.dl-annotation{
		text-align: start;
		margin-bottom: .8rem !important;
	}
}
.dl-link{
    background-color: #00813d;
    color: #ffffff !important;
    border-radius: 0.5em;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 1em 1.5em !important;
    font-size: max(1em, 1vw) !important;
    text-align: center;
    border: 3px solid #00813d;
	width: 100%;
    display: block;
	max-width: 500px;
	margin: auto;
}
.dl-link .link-txt{
	display: flex;
    align-items: center;
    justify-content: center;
}
.dl-link .link-txt::before {
    content: '';
    background-image: url(../images/common/download-icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 0.8em;
    width: 1.5rem;
    height: 1.5rem;
    transition: .5s;
}


