@charset "utf-8";

/* ========================================================
	privacy.css => PRIVACY POLICY用css
======================================================== */

/* コンテナ
============================================================================================================ */
#container {
	overflow: hidden;
}

/* privacy
============================================================================================================ */
#privacy {
	position: relative;
	padding-top: 64px;
	background: #fff url(../../common/images/parts/bg_section.png) 50% 0;
	z-index: 10;
}
@media screen and (max-width: 640px) {
	#privacy {
		padding-top: 40px;
	}
}

/* header
----------------------------------------------------------------------- */
#privacy > header {
	background-color: #fff;
}
#privacy > header .w {
	position: relative;
	height: 180px;
}
#privacy > header h1 {
	position: absolute;
	right: 10px;
	top: 70px;
}
#privacy > header p {
	padding-top: 75px;
	font-size: 14px;
	font-size: 1.4rem;
}
#privacy > header p a {
	color: #454545;
}

@media screen and (max-width: 640px) {
	#privacy > header .w {
		height: 90px;
	}
	#privacy > header h1 {
		top: 35px;
	}
	#privacy > header h1 img {
		width: auto;
		height: 20px;
	}
	#privacy > header p {
		padding-top: 35px;
		font-size: 13px;
		font-size: 1.3rem;
	}
}


/* contents
============================================================================================================ */
.contents {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}
@media screen and (max-width: 640px) {
	.contents {
		padding-top: 20px;
		padding-bottom: 40px;
	}
}



/* privacy
============================================================================================================ */
#privacy {
}
#privacy section + section {
	margin-top: 80px;
}
#privacy section h2 {
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 25px;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.3;
	font-weight: normal;
	letter-spacing: 0.1em;
}
#privacy section h2:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45px;
	border-bottom: 1px solid #747474;
}
#privacy p {
	line-height: 2.5;
}
@media screen and (max-width: 640px) {
	#privacy section h2 {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}
	#privacy section + section {
		margin-top: 40px;
	}
	#privacy p {
		line-height: 2;
	}
}



#privacy ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin-top:10px;
}

#privacy ol li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#privacy ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  color: #333;
  display: block;
  float: left;
  line-height: 18px;
  margin-left: -20px;
  text-align: center;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  margin-top:3px;
}

