@charset "utf-8";
#privacy_policy {
	width: 100%;
	height: auto;
	position: relative;
	padding: 22px 0 0;
	overflow: hidden;
}
#privacy_policy .page__wrap::before {
	height: 100%;
}
	.privacy_policy__inner {
		width: 100%;
		height: auto;
	}
		.privacy_policy__contents {
			width: 100%;
			height: auto;
			padding: 0px 0 153px;
		}
			.privacy_policy__contents__inner {
				width: 85%;
				max-width: 890px;
				height: auto;
				margin: 0 auto;
				position: relative;
				z-index: 3;
			}
				.privacy_policy__contents__wrap {
					width: 100%;
					height: auto;
					padding: 60px 56px;
					margin: 0 auto;
					border-radius: 70px;
					background-color: var(--color--white);
				}
					.privacy_policy__contents__txt {
						width: 100%;
						height: auto;
						margin: 0 auto 18px;
						font-size: 14px;
						font-weight: 500;
						line-height: 1.8;
						letter-spacing: 0.01em;
					}
					.privacy_policy__list {
						width: 100%;
						height: auto;
						counter-reset: number 0;
					}
						.privacy_policy__item {
							width: 100%;
							height: auto;
						}
						.privacy_policy__item:not(:last-of-type) {
							margin: 0 auto 18px;
						}
							.privacy_policy__item__heading {
								width: 100%;
								height: auto;
								padding-left: 27px;
								font-size: 16px;
								font-weight: 700;
								position: relative;
							}
								.privacy_policy__item__heading::before {
									counter-increment: number 1;
									content: counter(number) ".";
									position: absolute;
									left: 0;
								}
							.privacy_policy__item__details {
								width: 100%;
								height: auto;
								padding-left: 27px;
								font-size: 14px;
								font-weight: 500;
							}
								.privacy_policy__item__details__list {
									width: 100%;
									height: auto;
									counter-reset: number 0;
								}
									.privacy_policy__item__details__item {
										width: 100%;
										height: auto;
										padding-left: 38px;
										position: relative;
									}
									.privacy_policy__item__details__item::before {
										counter-increment: number 1;
										content: "（" counter(number) "）";
										position: absolute;
										left: 0;
									}


/* PC ================================================== */
@media all and (min-width:1025px){

}

/* Tablet ================================================== */
@media all and (max-width:1024px){
#privacy_policy {
	padding: 28px 0 0;
}
		.privacy_policy__contents {
			width: 100%;
			height: auto;
			padding: 0px 0 80px;
		}
			.privacy_policy__contents__inner {
				width: 87.2%;
				max-width: initial;
			}
					.privacy_policy__contents__txt {
						margin: 0 auto 16px;
						font-size: 12px;
					}
						.privacy_policy__item:not(:last-of-type) {
							margin: 0 auto 16px;
						}
							.privacy_policy__item__heading {
								padding-left: 20px;
								font-size: 14px;
							}
							.privacy_policy__item__details {
								padding-left: 20px;
								font-size: 12px;
							}
									.privacy_policy__item__details__item {
										padding-left: 29px;
									}
}

/* SP ================================================== */
@media all and (max-width:599px){
				.privacy_policy__contents__wrap {
					padding: 32px 24px;
					border-radius: 40px;
				}
}