@charset "utf-8";
/* CSS Document */

/* Ryoetsu denki
   massage
-----------------------------------------------------*/


/* ==============================================
    main-visual
============================================== */
.main-visual {
	position: relative;
	padding-top: 55.53%;
}

.main-visual figure {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.main-visual figure img {
	max-width: inherit;
	width: 100%;
}
.main-visual h2 {
	font-size: 2.375em;
	font-weight: 900;
	position: absolute;
	z-index: 2;
	top: 6vw;
	left: 0;
	right: 0;
	text-align: center;
}
.main-visual .box {
	position: absolute;
	top: 20vw;
	left: 50%;
	margin-left: -270px;
	z-index: 2;
	background: rgba(255,255,255,0.7);
	width: 540px;
	padding: 30px;
	text-align: center;
}
.main-visual .box p {
	font-size: 1.500em;
	font-weight: 700;
}
.main-visual .box p::before {
	content: "";
	display: block;
	background: url("image/icon_heart.svg") no-repeat 0 0 / contain;
	width: 88px;
	height: 88px;
	margin: 0 auto 40px;
}


@media screen and (max-width: 1000px) {
	.main-visual .box {
		width: 60%;
		margin-left: -30%;
		padding: 20px;
	}
	.main-visual .box p {
		font-size: 1.250em;
	}
	.main-visual .box p::before {
		width: 70px;
		height: 70px;
		margin: 0 auto 30px;
	}
}

@media screen and (max-width: 700px) {
	.main-visual h2 {
		font-size: 1.857em;
		top: 2vw;
	}
	.main-visual .box {
		top: 28vw;
		width: 90%;
		margin-left: -45%;
		padding: 10px 5px;
	}
	.main-visual .box p {
		font-size: 1.143em;
	}
	.main-visual .box p::before {
		width: 46px;
		height: 46px;
		margin: 0 auto 5px;
	}
}

/* ==============================================
    charm-section
============================================== */
#charm-section {
	margin-top: 70px;
	/*margin-bottom: 120px;*/
}

#charm-section section {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 60px;
}
#charm-section section:nth-child(2n) figure {
	order: 1;
}
#charm-section section:nth-child(2n) div {
	order: 2;
}

#charm-section section figure {
	width: 506px;
}
#charm-section section div {
	flex: 1;
	margin: 0 50px 0 170px;
}
#charm-section section h2 {
	font-size: 2.000em;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 25px;
	position: relative;
}
#charm-section section h2 span {
	font-size: 1.125em;
	color: #ff0000;
}
#charm-section section h2::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: -20px;
	width: 90px;
	height: 90px;
	background: url("image/icon_stand_r.svg") 0 0 / contain;
	margin-right: 30px;
	margin-left: -120px;
	vertical-align: middle;
	transform: rotate(180deg);
}

#charm-section section h3 {
	font-size: 1.375em;
	font-weight: 700;
	margin-bottom: 10px;
}
#charm-section section p {
	font-size: 1.125em;
	margin-bottom: 25px;
}

@media screen and (max-width: 1000px) {
	#charm-section section figure {
		width: 38%;
	}
	#charm-section section div {
		margin: 0 20px 0 70px;
	}
	#charm-section section h2::before {
		top: 0px;
		width: 50px;
		height: 50px;
		margin-right: 10px;
		margin-left: -60px;
	}
	#charm-section section h2 {
		font-size: 1.875em;
	}
	#charm-section section p {
	font-size: 1.000em;
	}
}

@media screen and (max-width: 700px) {
	#charm-section section {
		display: block;
	}
	#charm-section section figure {
		width: 70%;
		margin: 0 auto;
	}
}

/* ==============================================
    data-section
============================================== */
#data-section {
	text-align: center;
	padding-top: 150px;
	padding-bottom: 100px;
}
#data-section h2 {
	font-size: 2.375em;
	font-weight: 900;
	margin-bottom: 20px;
}
#data-section .catch {
	font-size: 1.125em;
	margin-bottom: 50px;
}

#data-ryoetsu {
	margin: 0 auto;
	width: 949px;
}
#data-ryoetsu ul {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border-top: 1px solid #2d2d2d;
}
#data-ryoetsu li {
	width: 33.3333%;
	border-bottom: 1px solid #2d2d2d;
	border-right: 1px solid #2d2d2d;
	
	/*opacity : 0;
	visibility: hidden;
	transition: 0.5s;
	transform: translateY(50px);*/
}
#data-ryoetsu li:nth-child(3n+1) {
	border-left: 1px solid #2d2d2d;
}



/*#data-ryoetsu  ul.scrollin.active li {
	opacity : 1;
	visibility: visible;
	transform: translateY(0);
}

#data-ryoetsu  ul.scrollin.active li:nth-child(1) {
	transition-delay: 0.2s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(2) {
	transition-delay: 0.4s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(3) {
	transition-delay: 0.6s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(4) {
	transition-delay: 0.8s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(5) {
	transition-delay: 1.0s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(6) {
	transition-delay: 1.2s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(7) {
	transition-delay: 1.4s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(8) {
	transition-delay: 1.6s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(9) {
	transition-delay: 1.8s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(10) {
	transition-delay: 2.0s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(11) {
	transition-delay: 2.2s;
}
#data-ryoetsu  ul.scrollin.active li:nth-child(12) {
	transition-delay: 2.4s;
}*/

@media screen and (max-width: 950px) {
	#data-ryoetsu {
		width: 90%;
	}
}

@media screen and (max-width: 700px) {
	#data-ryoetsu li {
		width: 50%;
	}
	#data-ryoetsu li:nth-child(3n+1) {
		border-left: none;
	}
	#data-ryoetsu li:nth-child(2n+1) {
		border-left: 1px solid #2d2d2d;;
	}
}