#main {
	width: 100%;
}
@media screen and (max-width: 767px) {
	#main {
		padding-top: 13.3333333333vw;
	}
}

/* ページヒーロー */
.page-hero {
	width: 100%;
	height: 250px;
	background: linear-gradient(135deg, #001f2e 0%, #004a6e 50%, #006493 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 767px) {
	.page-hero {
		height: 40vw;
	}
}
.page-hero__in {
	text-align: center;
	color: #fff;
}
.page-hero__ttl {
	font-size: 40px;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
	.page-hero__ttl {
		font-size: 8vw;
		margin-bottom: 2.6666666667vw;
	}
}
.page-hero__sub {
	font-size: 14px;
}

/* プライバシーポリシー本文 */
.privacy__in {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 30px 80px;
}
@media screen and (max-width: 767px) {
	.privacy__in {
		padding: 9.3333333333vw 4vw 13.3333333333vw;
	}
}
.privacy__intro {
	line-height: 2;
	margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
	.privacy__intro {
		margin-bottom: 6.6666666667vw;
	}
}

.privacy-section {
	margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
	.privacy-section {
		margin-bottom: 6.6666666667vw;
	}
}
.privacy-section__ttl {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #001f2e;
	border-bottom: 2px solid #006493;
	padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
	.privacy-section__ttl {
		font-size: 4.2666666667vw;
	}
}
.privacy-section__txt {
	line-height: 2;
}
.privacy-section__list {
	margin-top: 10px;
	padding-left: 20px;
}
.privacy-section__list li {
	line-height: 2;
	position: relative;
	padding-left: 15px;
}
.privacy-section__list li::before {
	content: '・';
	position: absolute;
	left: 0;
}

.privacy-contact {
	margin-top: 15px;
	padding: 20px 25px;
	background: #f5f5f5;
	border-radius: 5px;
	line-height: 2;
}
.privacy-contact a {
	color: #006493;
	text-decoration: underline;
}
.privacy-contact a:hover {
	text-decoration: none;
}

.privacy__date {
	text-align: right;
	font-size: 13px;
	color: #666;
	margin-top: 40px;
}

.privacy__btn-wrp {
	text-align: center;
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.privacy__btn-wrp {
		margin-top: 9.3333333333vw;
	}
}
.privacy__btn {
	display: inline-block;
	width: 300px;
	padding: 18px 0;
	background: #006493;
	color: #fff;
	border: 2px solid #006493;
	border-radius: 5px;
	font-size: 16px;
	text-align: center;
	transition: 0.25s ease;
}
@media screen and (max-width: 767px) {
	.privacy__btn {
		width: 100%;
	}
}
.privacy__btn:hover {
	background: #004a6e;
	border-color: #004a6e;
}
