/* contact-privacy.CSS */
@charset "UTF-8";

body {
	counter-reset: number;
}

#contact-privacy-image {
	position: relative;
	background-image: url('/assets/img/contact/contact-image-smt.jpg');
	background-position-x: center;
	background-position-y: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	max-width: 100% !important;
	height: 60vw;
	clear: both;
}

.contact-privacy-block {
	padding: 15px;
	text-align: left;
}

body .privacy h3 {
	position: relative;
	text-align: left;
}
body .privacy h3::before {
	content: counter(number);
	counter-increment: number;
	padding: 0 1.0em 0 0;
}
.privacy p {
	padding: 1.0em 0;
}
.privacy ol {
	margin: 0;
	padding: 0 0 0 1.5em;
	border: 0;
	list-style-type: decimal;
}
.privacy li {
	padding: 0 0 0.5em;
}
.privacy table {
	display: block;
	width: 100%;
	text-align: left;
}
.privacy table th {
	display: block;
	vertical-align: top;
}
.privacy table td {
	display: block;
	vertical-align: top;
}

@media screen and (min-width: 751px) {
	/* 751px以上に適用されるCSS（PC用） */
	
	#contact-privacy-image {
		background-image: url('/assets/img/contact/contact-image-pc.jpg');
		height: 58vw;
		max-width: 100% !important;
		margin-top: 0 !important;
	}
	
	.privacy {
		max-width: 860px;
		margin: 0 auto;
	}
	.privacy table {
		display: table;
	}
	.privacy table th {
		display: table-cell;
		width: 35%;
	}
	.privacy table td {
		display: table-cell;
		width: 65%;
	}
	.privacy table th.cols {
		width: 100%;
	}
	
}

@media screen and (min-width: 1200px) {


}