@charset "UTF-8";
/*プライバシーポリシー ヘッダ----------------------------------------------*/
.privacy-header{
	position: relative;
	margin: 0 auto 76px;
	padding: 0;
	width: var(--contents-width);
}
.privacy-header h3{
	margin: 0 0 40px;
	padding: 0;
	font-family: var(--min-font);
	font-size: 32px;
	line-height: 52px;
	font-weight: var(--font-weight-bold);
}
.privacy-header .description{
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 32px;
	font-weight: var(--font-weight-medium);
}

@media screen and (max-width: 1259px) {
	.privacy-header{
		margin: 0 auto 80px;
		width: calc(100vw - 40px);
	}
	.privacy-header h3{
		width: calc(100vw - 40px);
		margin: 0 auto 43px;
		font-size: 24px;
		line-height: 38px;
	}
	.privacy-header .description{
		width: calc(100vw - 40px);
		line-height: 28px;
		text-align: justify;
	}
}

/*プライバシーポリシー----------------------------------------------*/
.privacy{
	position: relative;
	margin: 0 auto 120px;
	padding: 0;
	width: var(--contents-width);
}
.privacy ul.list{
	display: flex;
	list-style: none;
	width: var(--contents-width);
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.privacy ul.list > li{
	position: relative;
	display: grid;
	width: var(--contents-width);
	margin: 0 0 43px;
	padding: 0;
	grid-template-rows: 60px auto auto;
	grid-template-columns: 80px 1020px;
}
.privacy ul.list li h4{
	width: 1020px;
	margin: 0 0 40px;
	padding: 0;
	font-family: var(--min-font);
	font-size: 24px;
	line-height: 24px;
	font-weight: var(--font-weight-semibold);
	grid-row: 1;
	grid-column: 2;
}
.privacy ul.list li h4:before{
	content: "";
	position: absolute;
	display: block;
	top: 25px;
	left: 0px;
	width: 64px;
	height: 1px;
	background: var(--font-color-normal);
}
.privacy ul.list li .description{
	width: var(--contents-width);
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 32px;
	font-weight: var(--font-weight-medium);
	grid-row: 2;
	grid-column: 1;
}
.privacy ul.list li ul{
	position: relative;
	width: var(--contents-width);
	margin: 0;
	padding-left: 1rem;
	list-style-type: disc;
}
.privacy ul.list dl.data{
	position: relative;
	width: var(--contents-width);
	margin: 0;
	padding: 0;
	grid-row: 3;
	grid-column: 1;
}
.privacy ul.list dl.data dt{
	float: left;
	width: 60px;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 32px;
	font-weight: var(--font-weight-medium);
}
.privacy ul.list dl.data dd{
	float: right;
	width: 1040px;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 32px;
	font-weight: var(--font-weight-medium);
}

@media screen and (max-width: 1259px) {
	.privacy{
		margin: 0 auto 80px;
		width: calc(100vw - 40px);
	}
	.privacy ul.list{
		width: calc(100vw - 40px);
	}
	.privacy ul.list > li{
		width: calc(100vw - 40px);
		margin: 0 0 43px;
		grid-template-rows: auto auto auto;
		grid-template-columns: 48px auto;
	}
	.privacy ul.list li h4{
		width: calc(100vw - 88px);
		margin: 0 0 32px;
		padding: 0;
		line-height: 32px;
	}
	.privacy ul.list li h4:before{
		top: 16px;
		width: 32px;
	}
	.privacy ul.list li .description{
		width: calc(100vw - 40px);
		margin: 0 0 32px;
		text-align: justify;
	}
	.privacy ul.list li ul{
		width: calc(100vw - 40px - 1rem);
	}
	.privacy ul.list dl.data{
		width: calc(100vw - 40px);
	}
	.privacy ul.list dl.data dt{
		width: 60px;
	}
	.privacy ul.list dl.data dd{
		width: calc(100vw - 100px);
	}
}