/*Treatment*/

/* ↓↓↓ スマホサイト start ↓↓↓ */

#treatment01,
#treatment02 {
	background-color: rgb(255, 255, 255);
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 20px;
	clear: both;
}

#contents_lists img {
	width: 140px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.photo01 {
	width: 100%;
}

#treatment01 p.copyright {
	text-align: left;
	font-size: x-small;
	line-height: normal;
	padding-top: 30px;
	clear: both;
}

.point {
	padding-top: 20px;
	width: 100%;
	margin: auto;
	display: block;
}

.title_sp {
	display: block;
}

.title_pc {
	display: none;
}


/* ↑↑↑ スマホサイト end ↑↑↑ */
@media screen and (min-width: 667px) {}

@media screen and (min-width: 960px) {
	.title_sp {
		display: none;
	}

	.title_pc {
		display: block;

	}

	#treatment01,
	#treatment02 {
		margin-top: 50px;
	}

	#contents_lists img {
		width: 180px;
	}

	.photo01 {
		width: 47%;
		float: left;
		padding-right: 40px;
	}

	.point {
		width: 500px;
	}
}

/* animation */
h2 {
	animation: SlideIn 1.0s;
}

#contents_lists {
	animation: SlideIn 1.5s;
}


#treatment01 {
	animation: SlideIn 2.0s;
}

#treatment02 {
	animation: SlideIn 2.5s;
}

footer {
	animation: SlideIn 3.0s;
}

@keyframes SlideIn {
	0% {
		opacity: 0;
		transform: translateY(250px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}