.p-note {
	position: relative;
	z-index: 5;
	border: solid 1px #000;
	padding-bottom: 3rem;
}

.p-note_head{
	line-height: 5rem;
	max-width: 960px;
	padding: 5rem 0 5rem 5rem;
	margin: 0 auto;
	font-weight: bold;
	font-size: 2rem;
}

.p-note2{
	max-width: 900px;
	font-size: 16px;
	margin: 0 auto;
	line-height: 28px;
}

.p-note ul {
	margin-top: 4rem;
}

.p-note ul li {
	border-top: .1rem solid #88a5ad;
}

.p-note__ttl {
	padding: 3% 0;
	position: relative;
	font-size: 3.462rem;
	font-weight: 700;
	cursor: pointer;
}

.p-note__ttl:after,
.p-note__ttl:before {
	position: absolute;
	content: "";
	background-color: #000;
	width: 1rem;
	height: .1rem;
	top: calc(50% - 0.15rem);
	right: 1.5rem;
	transition: all .25s ease-in-out;
}

.p-note__ttl:after {
	transform: rotate(90deg);
}

.p-note__ttl:before {
	transform: rotate(0deg);
}

.p-note__ttl.close:after {
	transform: rotate(135deg);
}

.p-note__ttl.close:before {
	transform: rotate(45deg);
}

.p-note__txt {
	padding: 4rem;
	color: #4a4a4a;
	line-height: 4.5rem;
	margin-bottom: 4rem;
	font-size: 2.8rem;
	display: none;
}
.p-note__txt a {
	color: #0000EE;
	text-decoration: underline;
}

.accordion {
	margin: 0 auto;
}
.accordion__summary {
	font-size: 2.3rem;
	padding: 3%;
	position: relative;
	font-weight: 700;
	display: block;
	cursor: pointer;
	border-top: solid 1px #000;
	max-width: 900px;
	margin: 0 auto;
}
.accordion__summary::after {
	content: "+";
	font-size: 2em;
	font-weight: bold;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	margin-right: 2.5rem;
}
.accordion input:checked ~ .accordion__summary::after {
	content: "×";
	font-size: 1.5em;
	font-weight: bold;
	margin-right: 2.5rem;
}
.accordion input {
	display: none;
}
.accordion__detail {
	display: none;
	padding: 4px 10px;
	margin: 10px auto;
	max-width: 900px;
}
.accordion input:checked ~ .accordion__detail {
	display: block;
}
.accordion__text {
	margin: 0;
}

@media (min-width: 768px) {

	.bg-parrlax img {
		width: 100%;
	}
		
	.p-note{
			margin-top: 8rem;
		}

	.p-note ul {
		list-style: none;
		width: 96%;
		max-width: 900px;
		margin: 0 auto;
		margin-top: 8rem;
	}

	.p-note__ttl {
		font-size: 22px;
	}

	.p-note__ttl:after,
	.p-note__ttl:before {
		width: 30px;
		height: .4rem;
		top: calc(50% - 0.2rem);
		right: 3rem;
	}

	.p-note__txt {
		line-height: 2.5rem;
		font-size: 18px;
		padding: 36px;
	}
	.indent_span {
		text-indent: -1.8rem;
		padding-left: 1.8rem;
		display: inline-block;
	}

}

@media (max-width: 768px) {

	.p-note_head{
		line-height: 5rem;
		max-width: 90%;
		padding: 2rem 0;
		margin: 0 auto;
		font-weight: bold;
		font-size: 2.5rem;
	}
	
	.accordion__summary {
		max-width: 90%;
		padding: 3% 0;
	}
	
	.accordion__detail {
		max-width: 90%;
		font-size: 2rem;
	}

}
