@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #090909;
}

li {
	list-style: none;
}

main {
	background-color: #090909;
}
@media screen and (max-width: 768px) {
	main {
		width: 100%;
	}
}

.zen {
	font-family: "Zen Old Mincho", serif;
}
.sc {
	font-family: "Cormorant SC", serif;
}
.infant {
	font-family: "Cormorant Infant", serif;
}

/*ヘッダー*/
header {
	position: absolute;
	width: 100%;
	z-index: 999;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	text-align: center;
	margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
	.header-inner {
		max-width: 100%;
		margin: 30px auto 0;
	}
}

.header-logo img {
	vertical-align: middle;
	width: 280px;
}
@media screen and (max-width: 768px) {
	.header-logo img {
		width: 200px;
	}
}

@media screen and (max-width: 768px) {
		.header-menu {
			 display: none;
		}
}

.header-menu-item {
	display: flex;
}

.header-menu-item li:not(:last-child) {
	margin-right: 25px;
}

.header-menu-item li a {
	color: #f5f5f5;
	font-size: 24px;
}

.hamburger-menu {
	display: none;
}
@media screen and (max-width: 768px) {
	.hamburger-menu {
		display: block;
		position: relative;
	}

	/*SP版ヘッダーハンバーガーボタン調整*/
	.menu-btn {
		position: fixed;
		top: 24px;
		right: 0;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: rgba(255, 255, 255, 0);
	}

	/*SP版ハンバーガーボタン調整*/
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 2px;
		width: 30px;
		border-radius: 3px;
		background-color: #f5f5f5;
		position: absolute;
		transition: .3s;
	}

	/*SP版ハンバーガーボタン下線調整*/
	.menu-btn span:before {
		bottom: 6px;
	}

	/*SP版ハンバーガーボタン上線調整*/
	.menu-btn span:after {
		top: 6px;
	}

	/*SP版ハンバーガーボタンクリック時*/
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}

	/*SP版ハンバーガーボタンクリック時下線を斜めに*/
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
		transition: .3s;
		background-color: #090909;
	}
	
	/*SP版ハンバーガーボタンクリック時上線を斜めに*/
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
		transition: .3s;
		background-color: #090909;
	}

	/*ハンバーガーボタンチェック非表示*/
	#menu-btn-check {
		display: none;
	}

	/*ハンバーガーメニュー内余白調整*/
	.sp-menu-content ul {
		margin: 152px auto 0 20px;
		max-width: 270px;
	}

	/*ハンバーガーメニュー内調整*/
	.sp-menu-content ul li {
		border-bottom: solid 1px #090909;
		list-style: none;
		text-align: left;
	}

	/*ハンバーガーメニュー内調整*/
	.sp-menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 18px;
		font-weight: 700;
		box-sizing: border-box;
		color: #090909;;
		text-decoration: none;
		padding: 20px 0 20px 28px;
		position: relative;
		letter-spacing: 2px;
	}

	/*ハンバーガーメニュー内矢印調整*/
	.sp-menu-content ul li a::before {
		content: "";
		position: absolute;
		right: 20px;
		top: 26px;
		width: calc(18px / 2 * tan(60deg));
		height: 18px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
		background-color: #090909;
	}

	/*ハンバーガーメニュー内調整*/
	.sp-menu-content {
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 100%;/*leftの値を変更してメニューを画面外へ*/
		z-index: 80;
		background-color: #f5f5f5;
		transition: all 0.5s;/*アニメーション設定*/
		overflow-y: scroll;
	}

	.ham-logo {
		position: absolute;
		top: 70px;
		left: 20px;
	}
	
	.ham-close {
		position: absolute;
		top: 40px;
		right: 50px;
		font-size: 18px;
		font-weight: 700;
	}

	.ham-contact {
		text-align: center;
		margin-top: 66px;
		margin-bottom: 30px;
	}

	.ham-contact a {
		display: inline-block;
		font-size: 24px;
		font-weight: 500;
		background-color: #090909;
		color: #f5f5f5;
		padding: 15px 40px;
	}

	/*ハンバーガーメニューチェック時*/
	#menu-btn-check:checked ~ .sp-menu-content {
		/* 		left: 0;メニューを画面内へ */
		left: 0;
	}
}

.sp-contact-btn {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp-contact-btn {
		display: block;
		position: fixed;
		z-index: 70;
		bottom: 0;
		left: 0;
		background-color: #f5f5f5;
		width: 100%;
	}
	
	.sp-contact-btn a {
		width: 100%;
		padding: 14px 0;
		color: #090909;
		font-size: 20px;
		display: block;
	}

	.sp-contact-btn a::before {
		content: "";
		position: absolute;
		right: 90px;
		top: 20px;
		width: calc(18px / 2 * tan(60deg));
		height: 18px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
		background-color: #090909;
	}

}


/*ここまでヘッダー*/

/*メインビジュアル*/
.main-visual {
	position: relative;
	background-color: #090909;
}

.main-visual img {
	width: 100%;
}

.sp-mv {
	display: none;
}
@media screen and (max-width: 768px) {
	.pc-mv {
		display: none;
	}
	.sp-mv {
		display: block;
	}
}

.main-visual-title {
	position: absolute;
	top: 45%;
	right: 5%;
	color: #f5f5f5;
	font-size: 50px;
}
@media screen and (max-width: 768px) {
	.main-visual-title {
		top: 65%;
		right: inherit;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		font-size: 30px;
		width: 100%;
		text-align: center;
	}
}

.fixed-banner a {
	position: fixed;
	bottom: 5%;
	left: 4%;
	z-index: 999;
	background-color: #090909;
	border-radius: 50%;
	border: 1px solid #090909;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 218px;
	height: 218px;
	font-size: 24px;
	color: #f5f5f5;
	transition: all .6s;
}

.fixed-banner.active a, .fixed-banner.active2 a {
	background-color: #f5f5f5;
	color: #090909;
	border: 1px solid #090909;
	transition: all .6s;
}
@media screen and (max-width: 768px) {
	.fixed-banner {
		display: none;
	}
}

/*ここまでメインビジュアル*/

/*concept*/
.concept-section {
	background-color: #090909;
}

.concept-section h2,.concept-section p {
	color: #f5f5f5;
}

.concept-inner {
	padding: 150px;
}
@media screen and (max-width: 768px) {
	.concept-inner {
		padding: 80px 8px;
	}
}

.concept-menu {
	display: flex;
	justify-content: space-between;
	max-width: 1024px;
	margin: 0 auto 150px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.concept-menu {
		flex-direction: column;
		max-width: 240px;
		margin: 60px auto;
	}
}

.concept-content {
	width: 400px;
}
@media screen and (max-width: 768px) {
	.concept-content {
		width: 100%;
	}
}

.concept-menu-img img {
	width: 520px;
	height: 300px;
}
@media screen and (max-width: 768px) {
	.concept-menu-img {
		width: 100%;
	}

	.concept-menu-img img {
		width: 100%;
		height: 133px;
	}
}

.concept-content-title {
	font-size: 50px;
	font-weight: 700;
	margin-top: 50px;
}
@media screen and (max-width: 768px) {
	.concept-content-title {
		font-size: 36px;
		margin-top: 15px;
	}
}

.concept-content-title .zen {
	font-size: 45px;
}
@media screen and (max-width: 768px) {
	.concept-content-title .zen {
		font-size: 32px;
	}
	.concept-content-title .fs-40 {
		font-size: 30px;
	}
}

.concept-content-text {
	font-size: 20px;
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
	.concept-content-text {
		font-size: 16px;
		margin-top: 15px;
	}
}

.concept-content-btn-flex {
	display: flex;
	justify-content: center;
	font-size: 20px;
	margin-top: 16px;
}
@media screen and (max-width: 768px) {
	.concept-content-btn-flex {
		flex-direction: column;
		margin-top: 18px;
		display: inline-block;
	}
}

.concept-content-btn1 {
	display: inline-block;
	background-color: #f5f5f5;
	margin-right: 28px;
}
@media screen and (max-width: 768px) {
	.concept-content-btn1 {
		margin-right: 0;
	}
}

.concept-content-btn1:hover,
.concept-content-btn3:hover,
.concept-content-btn4:hover
 {
	background-color: #d9d9d9;
	transition: .8s all;
}

.concept-content-btn1 a {
	display: inline-block;
	padding: 16px 28px;
}

.concept-content-btn2 {
	display: inline-block;
	background-color: #ccafaf;
}
@media screen and (max-width: 768px) {
	.concept-content-btn2 {
		margin-top: 25px;
	}
}

.concept-content-btn2:hover {
	background-color: #cd8888;
	transition: .8s all;
}

.concept-content-btn2 a {
	display: inline-block;
	padding: 16px 12px;
}

.concept-content-btn-center {
	font-size: 20px;
	margin-top: 16px;
}
@media screen and (max-width: 768px) {
	.concept-content-btn-center {
		margin-top: 15px;
		display: inline-block;
	}
}

.concept-content-btn3, .concept-content-btn4 {
	display: inline-block;
	background-color: #f5f5f5;
}

.concept-content-btn3 a {
	display: inline-block;
	padding: 18px 52px;
}

.concept-content-btn4 a {
	display: inline-block;
	padding: 18px 40px;
}

@media screen and (max-width: 768px) {
	.concept-content-btn1 a,
	.concept-content-btn2 a,
	.concept-content-btn3 a,
	.concept-content-btn4 a {
		width: 170px;
		padding: 17px;
	}
}

.concept-area {
	text-align: center;
}
@media screen and (max-width: 768px) {
	.concept-area {
		width: 345px;
		margin: 0 auto;
	}
}

.concept-area-title h2 {
	font-size: 40px;
	letter-spacing: 6px;
}
@media screen and (max-width: 768px) {
	.concept-area-title h2 {
		font-size: 36px;
	}
}

.concept-area-title p {
	font-size: 14px;
}

.concept-area-sub-title {
	margin-top: 40px;
	font-size: 24px;
	font-weight: 900;
}
@media screen and (max-width: 768px) {
	.concept-area-sub-title {
		margin-top: 25px;
		font-size: 20px;
	}
}

.letter {
	letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
	.letter {
		font-size: 16px;
	}
	.fs-17 {
		font-size: 15px;
	}
}

.concept-area-text {
	margin-top: 20px;
	font-size: 18px;
	letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
	.concept-area-text {
		font-size: 16px;
	}
	.pc-br {
		display: none;
	}
}
/*ここまでconcept*/

/*promise*/
.promise-section {
	background-color: #090909;
	padding-top: 100px;
	padding-bottom: 100px;
	transition: all 0.6s;
}
@media screen and (max-width: 768px) {
	.promise-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.promise-section.background-color {
	background-color: #f5f5f5;
	transition: all 0.6s;
}

.promise-area {
	text-align: center;
	color: #f5f5f5;
	transition: all 0.6s;
}

.promise-section.background-color .promise-area, 
.promise-section.background-color .promise-item {
	color: #090909;
	transition: all 0.6s;
}

.promise-area-title h2 {
	font-size: 40px;
	letter-spacing: 6px;
}
@media screen and (max-width: 768px) {
	.promise-area-title h2 {
		font-size: 36px;
	}
}

.promise-area-title p {
	font-size: 14px;
}

.promise-item {
	max-width: 1140px;
	margin: 50px auto 0;
	color: #f5f5f5;
	transition: all 0.6s;
}
@media screen and (max-width: 768px) {
	.promise-item {
		max-width: 100%;
		margin: 0 auto;
	}
}

.promise-flex {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.promise-flex {
		flex-direction: column;
	}
}

.promise-flex li {
	text-align: center;
	width: 300px;
}
@media screen and (max-width: 768px) {
	.promise-flex li {
		width: 100%;
		margin-top: 60px;
	}
}

.promise-item-title {
	font-size: 20px;
	font-weight: 500;
	margin-top: 20px;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
	.promise-item-title {
		margin-top: 15px;
	}
}

.promise-item-text {
	font-size: 14px;
	font-weight: 400;
	margin-top: 12px;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
	.promise-item-text {
	font-size: 16px;
	margin-top: 15px;
	}
}

/*ここまでpromise*/

/*reason*/
.reason-section {
	background-color: #555454;
	position: relative;
	overflow: hidden;
}

.reason-area {
	padding-top: 100px;
	padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
	.reason-area {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.anime-border {
	background-color: #555454;
}

.anime-border.is-animated {
	position: absolute;
	top: 47%;
	right: -18%;
	width: 130%;
	height: 3px;
	transform: rotate(138.4deg);
}

.anime-border.is-animated::before {
	content: "";
	display: block;
	width: 0;
	height: 3px;
	background-color: #f5f5f5;
	animation-name: border;
	animation-duration: 3s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out;
}

@keyframes border {
	0% {
		width: 0;
	}
	100% {
		width: 130%;
	}
}

@media screen and (max-width: 768px) {
	.anime-border.is-animated {
		position: absolute;
		top: 36%;
		right: -39%;
		width: 150%;
		height: 3px;
		transform: rotate(122.4deg);
	}
}

.reason-area {
	text-align: center;
}

.reason-area-title h2 {
	font-size: 40px;
	color: #f5f5f5;
	letter-spacing: 6px;
}

.reason-area-title p {
	font-size: 14px;
	color: #f5f5f5;
}

.reason-item {
	margin-top: 70px;
}
@media screen and (max-width: 768px) {
	.reason-item {
		margin-top: 30px;
	}
}

.reason-item li {
	width: 866px;
	height: 263px;
	margin: 0 auto;
	position: relative;
	margin-bottom: 0.2rem;
	font-weight: bold;
	background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
	.reason-item li {
		width: 100%;
		max-width: 323px;
		height: 111px;
		margin: 20px auto 0;
	}
}

.reason-item .num1::after {
	content: '01';
}
.reason-item .num2::after {
	content: '02';
}
.reason-item .num3::after {
	content: '03';
}


.reason-item .num1::after,
.reason-item .num2::after,
.reason-item .num3::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #b8b8b8;
	font-size: 200px;
	font-family: "Cormorant Infant", serif;
	text-transform: uppercase;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.reason-item .num1::after,
	.reason-item .num2::after,
	.reason-item .num3::after {
		position: absolute;
		top: inherit;
		left: inherit;
		bottom: -12%;
		right: 1%;
		transform: translate(0%,0%);
		color: #b8b8b8;
		opacity: .6;
		font-size: 80px;
		letter-spacing: 6px;
	}
}

.reason-item li:not(:last-child) {
	margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
	.reason-item li:not(:last-child) {
		margin-bottom: 20px;
	}
}

.num1 .reason-item-center {
	width: 630px;
}
.num2 .reason-item-center {
	width: 620px;
}
.num3 .reason-item-center {
	width: 727px;
}

.num1 .reason-item-center,
.num2 .reason-item-center,
.num3 .reason-item-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.num1 .reason-item-center,
	.num2 .reason-item-center,
	.num3 .reason-item-center {
		width: 100%;
		margin: 0 10px;
	}
}

.reason-item li p {
	font-size: 27px;
	font-weight: 500;
	line-height: 68.4px;
}
@media screen and (max-width: 768px) {
	.reason-item li p {
		font-size: 16px;
		line-height: 25.6px;
	}
}

.reason-item li .strong-text {
	font-size: 38px;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	.reason-item li .strong-text {
		font-size: 16px;
	}
}

.reason-item .blue-text {
	/* color: #7d9ed1; */
	color: #2672e9;
	font-weight: 900;
	font-size: 38px;
}
@media screen and (max-width: 768px) {
	.reason-item .blue-text {
		font-size: 16px;
	}
}

.sp-br {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp-br {
		display: block;
	}
}
/*ここまでreason*/

/*access*/
.access-section {
	background-color: #090909;
	padding-top: 100px;
	padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
	.access-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.access-area {
		max-width: 305px;
		margin: 0 auto;
	}
}

.access-area-title {
	text-align: center;
}

.access-area-title h2 {
	font-size: 40px;
	color: #f5f5f5;
	letter-spacing: 6px;
}

.access-area-title p {
	font-size: 14px;
	color: #f5f5f5;
}

.access-content {
	display: flex;
	justify-content: center;
	margin-top: 75px;
}
@media screen and (max-width: 768px) {
	.access-content {
		flex-direction: column;
		margin-top: 27px;
	}
}

.access-map {
	margin-right: 105px;
}
@media screen and (max-width: 768px) {
	.access-map {
		margin-right: 0;
	}

	.access-map img {
		width: 100%;
	}
}

.access-text {
	color: #f5f5f5;
	margin-top: 38px;
	font-size: 16px;
	line-height: 28.8px;
}
@media screen and (max-width: 768px) {
	.access-text {
		margin-top: 0;
	}
}

.adress-flex {
	display: flex;
}
@media screen and (max-width: 768px) {
	.adress-flex {
		flex-direction: column;
	}
}

.adress-flex:not(:last-child) {
	margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
	.adress-flex:not(:last-child) {
		margin-bottom: 30px;
	}
}

.access-adress dt {
	float: left;
	width: 70px;
	margin-right: 70px;
}
@media screen and (max-width: 768px) {
	.access-adress dt {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-top: 30px;
		margin-bottom: 10px;
	}
}
	/*ここまでaccess*/

/*footer*/
footer {
	background-color: #090909;
	padding-bottom: 100px;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 60%;
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.footer-logo {
		margin: 0 auto;
	}
}

.footer-logo img {
	vertical-align: bottom;
}
@media screen and (max-width: 768px) {
	.footer-logo img {
		width: 100%;
	}
}

.sp-footer-logo {
	display: none;
}
@media screen and (max-width: 768px) {
	.pc-footer-logo {
		display: none;
	}
	.sp-footer-logo {
		display: block;
		text-align: center;
	}
}

.footer-menu ul {
	display: flex;
}
@media screen and (max-width: 768px) {
	.footer-menu ul {
		flex-direction: column;
		margin-top: 30px;
		margin-left: 100px;
	}
}

.footer-menu ul li:not(:last-child) {
	margin-right: 30px;
}
@media screen and (max-width: 768px) {
	.footer-menu ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 26px;
	}
	.footer-menu ul li{
		position: relative;
	}
	.footer-menu ul li::before {
		content: '';
		width: 60px;
		height: 1px;
		background-color: #f5f5f5;
		position: absolute;
		top: 14px;
		left: -70px;
	}
}

.footer-menu a {
	color: #f5f5f5;
}
@media screen and (max-width: 768px) {
	.footer-menu a {
		font-size: 18px;
	}
}

.copy-right {
	margin-top: 100px;
	color: #f5f5f5;
	font-size: 13px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.copy-right {
		margin-top: 60px;
	}
}
/*ここまでfooter*/

/*ここからdatsumouページ*/
/*header*/
.datsumou-header li a {
	color: #090909;
	font-size: 24px;
}
/*ここまでheader*/

/*メインビジュアル*/
.datsumou-main-visual {
	position: relative;
	background-color: #090909;
}

.datsumou-main-visual img {
	width: 100%;
	filter: brightness(0.8);
}

.datsumou-content-btn-flex {
	position: absolute;
	top: 18%;
	right: 8%;
	display: flex;
	justify-content: center;
	font-size: 20px;
}
@media screen and (max-width: 768px) {
	.datsumou-content-btn-flex {
		display: none;
	}
}

.datsumou-content-btn1 {
	display: inline-block;
	background-color: #f5f5f5;
	margin-right: 28px;
	border: 1px solid #090909;
}

.datsumou-content-btn1:hover {
	background-color: #d9d9d9;
	transition: .8s all;
}

.datsumou-content-btn1 a {
	display: inline-block;
	padding: 16px 28px;
}

.datsumou-content-btn2 {
	display: inline-block;
	background-color: #ccafaf;
	border: 1px solid #090909;
}

.datsumou-content-btn2:hover {
	background-color: #cd8888;
	transition: .8s all;
}

.datsumou-content-btn2 a {
	display: inline-block;
	padding: 16px 12px;
}

.datsumou-main-visual-title {
	position: absolute;
	bottom: 0;
	right: 8%;
	color: #f5f5f5;
	font-size: 100px;
	font-weight: 600;
}
@media screen and (max-width: 768px) {
	.datsumou-main-visual-title {
		bottom: inherit;
		top: 50%;
		right: 5%;
		transform: translateY(-50%);
		font-size: 40px;
		font-weight: 700;
		width: 100%;
		text-align: right;
	}
}

.datsumou-main-visual-title .fs-90 {
	font-size: 90px;
}
@media screen and (max-width: 768px) {
	.datsumou-main-visual-title .fs-90 {
		font-size: 35px;
	}
}

.datsumou-main-visual-title .fs-85 {
	font-size: 85px;
}
@media screen and (max-width: 768px) {
	.datsumou-main-visual-title .fs-85 {
		font-size: 35px;
	}
}

.datsumou-banner {
	position: fixed;
	top: 31%;
 right: 8%;
	z-index: 999;
}
@media screen and (max-width: 768px) {
	.datsumou-banner {
		top: inherit;
		right: inherit;
		bottom: 0;
		left: 0;
		width: 100%;
		text-align: center;
		z-index: 70;
	}
}

.datsumou-banner img {
	width: 251px;
	height: auto;
}
@media screen and (max-width: 768px) {
	.datsumou-banner img {
		width: 100%;
		height: 150px;
		vertical-align: bottom;
	}
}
/*ここまでメインビジュアル*/

/*worries*/
.worries-section {
	background-color: #090909;
	padding-top: 110px;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.worries-section {
		padding-top: 60px;
		margin-bottom: 10px;
	}
}

.worries-inner {
	color: #f5f5f5;
	max-width: 1160px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.worries-inner {
		max-width: 100%;
	}
}

.worries-title h2 {
	font-size: 40px;
}
@media screen and (max-width: 768px) {
	.worries-title h2 {
		font-size: 26px;
		text-align: center;
	}	
}

.worries-item {
	margin-top: 50px;
}
@media screen and (max-width: 768px) {
	.worries-item {
		margin-top: 40px;
	}
}

.worries-item ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 162px;
}
@media screen and (max-width: 768px) {
 .worries-item ul {
		flex-wrap: wrap;
		height: auto;
	}
}

.worries-item ul li {
	font-size: 30px;
	line-height: 54px;
	position: relative;
 padding-left: 35px;
	margin-left: 64px;
}
@media screen and (max-width: 768px) {
	.worries-item ul li {
		font-size: 16px;
		line-height: 40px;
		padding-left: 37px;
		margin-left: 65px;
	}
}

.worries-item ul li:before {
	content: "";
	position: absolute;
	width: 11px;
	height: 16px;
	top: 17px;
	left: 7px;
	-webkit-transform: rotate(36deg);
	-ms-transform: rotate(36deg);
	transform: rotate(36deg);
	border-right: 2px solid #f5f5f5;
	border-bottom: 2px solid #f5f5f5;
}
@media screen and (max-width: 768px) {
	.worries-item ul li:before {
		width: 9px;
		height: 14px;
		top: 9px;
		left: 6px;
	}
}

.worries-item ul li:after {
	content: "";
	position: absolute;
	top: 16px;
	left: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #f5f5f5;
	border-radius: 2px;
}
@media screen and (max-width: 768px) {
	.worries-item ul li:after {
		top: 8px;
		left: 0;
		width: 21px;
		height: 21px;
	}
}

.service-item {
	margin-top: 150px;
}
@media screen and (max-width: 768px) {
	.service-item {
		margin: 60px auto 0;
		max-width: 345px;
	}
}

.service-item ul {
	display: flex;
}
@media screen and (max-width: 768px) {
	.service-item ul {
		flex-direction: column;
	}
}

.service-item ul li {
	padding: 51px 30px  39px;
	width: calc(100%/3);
}
@media screen and (max-width: 768px) {
	.service-item ul li {
		padding: 6px 12px 40px;
		max-width: 315px;
		width: 100%;
		margin-bottom: 40px;
	}
}

.service-item ul li:first-child {
	position: relative;
}

.service-item.is-animated ul li>span:first-child {
	position: absolute;
	top: 50.3%;
	left: -78%;
	width: 601px;
	height: 3px;
	transform: rotate(270deg);
}
@media screen and (max-width: 768px) {
	.service-item.is-animated ul li>span:first-child {
		position: absolute;
		top: 47.4%;
		left: -82%;
		width: 556px;
	}
}

.service-item.is-animated ul li>span:first-child::before {
	content: "";
	display: block;
	width: 0;
	height: 3px;
	background-color: #f5f5f5;
	animation-name: border1;
	animation-duration: .2s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-delay: 0s;
}

@keyframes border1 {
	0% { 
		width: 0;
	}
	100% {
		width: 601px;
	}
}
@media screen and (max-width: 768px) {
	@keyframes border1 {
		0% { 
			width: 0;
		}
		100% {
			width: 556px;
		}
	}
}

.service-item ul li:nth-child(2) {
	position: relative;
}

.service-item.is-animated ul li>span:nth-child(2) {
	position: absolute;
	top: 0%;
	left: 0%;
	width: 388px;
	height: 3px;
	transform: rotate(0deg);
}
@media screen and (max-width: 768px) {
	.service-item.is-animated ul li>span:nth-child(2) {
		position: absolute;
		top: -0.4%;
		left: -0.4%;
		width: 345px;
		height: 3px;
		transform: rotate(0deg);
	}
}

.service-item.is-animated ul li>span:nth-child(2)::before {
	content: "";
	display: block;
	width: 0;
	height: 3px;
	background-color: #f5f5f5;
	animation-name: border2;
	animation-duration: .2s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-delay: .2s;
}

@keyframes border2 {
	0% { 
		width: 0;
	}
	100% {
		width: 388px;
	}
}
@media screen and (max-width: 768px) {
	@keyframes border2 {
		0% { 
			width: 0;
		}
		100% {
			width: 345px;
		}
	}
}

.service-item ul li:nth-child(3) {
	position: relative;
}

.service-item.is-animated ul li>span:nth-child(3) {
	position: absolute;
	top: 50.3%;
	right: -78%;
	width: 601px;
	height: 3px;
	transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
	.service-item.is-animated ul li>span:nth-child(3) {
		position: absolute;
		top: 47.4%;
		right: -83.4%;
		width: 556px;
		height: 3px;
		transform: rotate(90deg);
	}
}

.service-item.is-animated ul li>span:nth-child(3)::before {
	content: "";
	display: block;
	width: 0;
	height: 3px;
	background-color: #f5f5f5;
	animation-name: border1;
	animation-duration: .2s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-delay: 0.4s;
}

.service-item ul li:nth-child(4) {
	position: relative;
}

.service-item.is-animated ul li>span:nth-child(4) {
	position: absolute;
	bottom: -1%;
	right: 0%;
	width: 388px;
	height: 3px;
	transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
	.service-item.is-animated ul li>span:nth-child(4) {
		position: absolute;
		bottom: 4%;
		right: -1.8%;
		width: 345px;
		height: 3px;
		transform: rotate(180deg);
	}
}

.service-item.is-animated ul li>span:nth-child(4)::before {
	content: "";
	display: block;
	width: 0;
	height: 3px;
	background-color: #f5f5f5;
	animation-name: border2;
	animation-duration: .2s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-delay: 0.6s;
}

.service-item ul li:nth-child(5) {
	position: relative;
}

.service-item.is-animated ul li>span:nth-child(5) {
	position: absolute;
	top: 15%;
	right: -5%;
	width: 424px;
	height: 3px;
	transform: rotate(156deg);
}
@media screen and (max-width: 768px) {
	.service-item.is-animated ul li>span:nth-child(5) {
		position: absolute;
		top: 9.6%;
		right: -4%;
		width: 360px;
		height: 3px;
		transform: rotate(162deg);
	}
}

.service-item.is-animated ul li>span:nth-child(5)::before {
	content: "";
	display: block;
	width: 0;
	height: 3px;
	background-color: #f5f5f5;
	animation-name: border3;
	animation-duration: .2s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-delay: 0.8s;
}

@keyframes border3 {
	0% { 
		width: 0;
	}
	100% {
		width: 424px;
	}
}
@media screen and (max-width: 768px) {
	@keyframes border3 {
		0% { 
			width: 0;
		}
		100% {
			width: 360px;
		}
	}
}

@media screen and (max-width: 768px) {
	.sp-animation>span:first-child,
	.sp-animation>span:nth-child(2),
	.sp-animation>span:nth-child(3),
	.sp-animation >span:nth-child(4),
	.sp-animation1>span:first-child,
	.sp-animation1>span:nth-child(2),
	.sp-animation1>span:nth-child(3),
	.sp-animation1>span:nth-child(4)
	{
		display: none;
	}

	.sp-animation>span:nth-child(5){
		position: absolute;
		top: 10.6%!important;
		right: -3%!important;
		width: 360px;
		height: 3px;
		transform: rotate(162deg);
	}
	.sp-animation1>span:nth-child(5){
		position: absolute;
		top: 14.6%!important;
		right: -3%!important;
		width: 360px;
		height: 3px;
		transform: rotate(162deg);
	}

	.sp-animation, .sp-animation1 {
		border: 3px solid #f5f5f5;
	}
}

.service-item p {
	opacity: 0;
}

.service-item-title {
	position: relative;
	z-index: 2;
	background: #090909;
}

.service-item.is-animated ul li p {
	transition: 1s;
	opacity: 0;
	transform: translateY(20px);
	display: block;
}

.service-item.is-animated ul li p:first-of-type {
	animation: catch_anime 1s forwards 1s;
}
.service-item.is-animated ul li p:nth-of-type(2) {
	animation: catch_anime 1s forwards 1.2s;
}
.service-item.is-animated ul li p:nth-of-type(3) {
	animation: catch_anime 1s forwards 1.4s;
}
.service-item.is-animated ul li p:nth-of-type(4) {
	animation: catch_anime 1s forwards 1.6s;
}
.service-item.is-animated ul li p:nth-of-type(5) {
	animation: catch_anime 1s forwards 1.8s;
}

@keyframes catch_anime {
	0% {
			transform: translateY(20px);
	}
		100% {
			opacity: 1;
			transform: translateY(0);
	}
}

@media screen and (max-width: 768px) {
	.service-item-ttl p {
		text-align: center;
		margin: 22px auto 0;
		line-height: 50px;
	}
}

.service-item-title {
	font-size: 30px;
	text-align: center;
}

.service-item-title .number {
	font-size: 70px;
	margin-right: 15px;
}

.service-item-sub-title {
	margin-top: 53px;
	font-size: 20px;
}
@media screen and (max-width: 768px) {
	.service-item-sub-title {
		margin-top: 50px;
	}
}

.service-item-sub-title .fs-24 {
	font-size: 24px;
}

.service-item-text {
	margin-top: 10px;
	font-size: 16px;
	line-height: 28.8px;
}
@media screen and (max-width: 768px) {
	.service-item-text {
		margin-top: 15px;
	}
}

/*ここまでworries*/

/*mensmenu*/
.mens-menu-section {
	background-color: #090909;
	padding-top: 150px;
	padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
	.mens-menu-section {
		padding-top: 60px;
		padding-bottom: 13px;
	}
}

.mens-menu-inner {
	color: #f5f5f5;
	max-width: 1160px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.mens-menu-inner {
		max-width: 337px;
		margin: 0 auto;
	}
}

.menu-title h3 {
	font-size: 40px;
}
@media screen and (max-width: 768px) {
	.menu-title h3 {
		font-size: 36px;
		text-align: center;
	}
}

.menu-flex {
	margin-top: 100px;
}
@media screen and (max-width: 768px) {
	.menu-flex {
		margin-top: 30px;
	}
}

.menu-sub-title {
	font-size: 24px;
}
@media screen and (max-width: 768px) {
	.menu-sub-title {
		font-size: 20px;
	}
}

.menu-content ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
	.menu-content ul {
		flex-direction: column;
		margin-top: 20px;
		margin-bottom: 44px;
	}
}

.menu-content ul li {
	font-size: 16px;
	line-height: 28.8px;
}

@media screen and (max-width: 768px) {
	.menu-content ul li .fs-14 {
		font-size: 14px;
	}
	.menu-content ul li .mt {
		margin-top: 20px;
	}
}

.datsumou-bold {
	font-weight: 700;
}

.menu-price {
	margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
	.menu-price {
		margin-bottom: 30px;
		margin-top: 20px;
	}
}

.menu-course {
	background-color: #f5f5f5;
	color: #090909;
	padding: 4px 0;
	display: inline-block;
	width: 127px;
	text-align: center;
	margin-right: 13px;
}
@media screen and (max-width: 768px) {
	.menu-course {
		padding: 9px 0;
	}
}

.left-text {
	margin-left: -66px;
	margin-top: 24px;
}

.left-text-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.left-text {
		display: none;
	}
	.left-text-sp {
		display: block;
		font-size: 16px;
		margin-top: 15px;
	}

}
/*ここまでmensmenu*/

/*wemensmenu*/
.wemens-menu-section {
	background-color: #ccafaf;
	padding-top: 150px;
	padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
	.wemens-menu-section {
		padding-top: 60px;
		padding-bottom: 13px;
	}
}

.wemens-menu-inner {
	color: #090909;
	max-width: 1160px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.wemens-menu-inner {
		max-width: 337px;
	}
}

.wemens-menu-section .menu-course {
	background-color: #555454;
	color: #f5f5f5;
	padding: 4px auto;
	display: inline-block;
	width: 127px;
	text-align: center;
	margin-right: 13px;
}

.bottom-text {
	margin-top: 24px;
}
@media screen and (max-width: 768px) {
	.bottom-text {
		margin-top: 10px;
		white-space: nowrap;
	}
}
/*ここまでwemensmenu*/

/*flow*/
.flow-section {
	background-color: #f5f5f5;
	padding-top: 100px;
	padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
	.flow-section {
		padding-top:60px;
		padding-bottom: 40px;
	}
}

.flow-inner {
	color: #090909;
}
@media screen and (max-width: 768px) {
	.flow-inner {
		max-width: 329px;
		margin: 0 auto;
	}
}

.flow-title h3 {
	font-size: 40px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.flow-title h3 {
		font-size: 26px;
	}
}

.swiper {
	position: relative;
	margin-top: 100px;
}
@media screen and (max-width: 768px) {
	.swiper {
		margin-top: 18px;
		height: 177px;
	}
}

.swiper-wrapper {
	margin: 0 auto;
}

.swiper-slide {
	/* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
	color: #ffffff;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 300px;
}
@media screen and (max-width: 768px) {
	.swiper-slide {
		line-height: 113px;
	}
}

.swiper-slide img {
	width: 1010px;
	height: 300px;
}
@media screen and (max-width: 768px) {
	.swiper-slide img {
		width: 329px;
		height: 113px;
	}
}

.sp-slide {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp-slide {
		display: block;
	}
	.pc-slide {
		display: none;
	}
}

.swiper-pagination {
	position: absolute;
	margin-top: 16px;
} 

.swiper-pagination-bullet {
	width: 12px !important;
	height: 12px !important;
	margin: 0 0 0 10px !important;
	background: #999!important;
	opacity: 1!important;
}
@media screen and (max-width: 768px) {
	.swiper-pagination-bullet {
		width: 10px !important;
		height: 10px !important;
		margin: 0 0 0 12px !important;
	}
}

.swiper-pagination-bullet-active {
	background: #555454!important;
}

.swiper-pagination-bullet:first-child {
	margin: 0 !important;
}

.swiper-button-next, .swiper-button-prev {
	width: 50px!important;
	height: 50px!important;
	top: inherit!important;
	bottom: 0%;
	color: #f5f5f5!important;
	border-radius: 50%;
	background-color: #999;
}
@media screen and (max-width: 768px) {
	.swiper-button-next, .swiper-button-prev {
		width: 40px!important;
		height: 40px!important;
		top: inherit!important;
		bottom: 0%;
	}
}

.swiper-button-next:hover, .swiper-button-prev:hover {
	background-color: #555454;
	transition: .8s all;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 16px!important;
}

.swiper-button-prev {
	left: 40%!important;
	right: auto;
}
@media screen and (max-width: 768px) {
	.swiper-button-prev {
		left: 15%!important;
		right:auto;
	}
}

.swiper-button-next {
	right: 40%!important;
	left: auto;
}
@media screen and (max-width: 768px) {
	.swiper-button-next {
		right: 15%!important;
		left: auto;
	}
}
/*ここまでflow*/
/*ここまでdatsumouページ*/

/*ここからreizページ*/
/*メインビジュアル*/
.reiz-main-visual {
	position: relative;
	background-color: #090909;
}

.reiz-main-visual img {
	width: 100%;
}

.reiz-main-visual-title {
	position: absolute;
	bottom: 0;
	right: 8%;
	color: #f5f5f5;
	font-size: 100px;
	font-weight: 600;
}
@media screen and (max-width: 768px) {
	.reiz-main-visual-title {
		bottom: inherit;
		top: 56%;
		right: 5%;
		transform: translateY(-50%);
		font-size: 80px;
		font-weight: 700;
		text-align: right;
		line-height: 70px;
	}
}

.reiz-main-visual-title .fs-40 {
	font-size: 40px;
	margin-left: 24px;
}
@media screen and (max-width: 768px) {
	.reiz-main-visual-title .fs-40 {
		font-size: 34px;
		margin-left: 0;
	}
}
/*ここまでメインビジュアル*/

/*worries*/
.reiz-worries-section {
	padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
	.reiz-worries-section {
		padding-bottom: 60px;
	}
}

.reiz-worries-item ul {
	height: 216px;
	margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
	.reiz-worries-item ul {
		height: auto;
		margin-bottom: 64px;
	}
}

.reiz-worries-item ul li {
	margin-left: 36px;
}
@media screen and (max-width: 768px) {
	.reiz-worries-item ul li {
		margin-left: 36px;
		text-align: left;
	}
}

.reiz-worries-title {
	position: relative;
	margin: 0;
	padding: 0.5em 1em;
	border: solid 1px #f5f5f5;
}
@media screen and (max-width: 768px) {
	.reiz-worries-title {
		position: relative;
		margin: 0;
		padding: 0;
		border: none;
		text-align: center;
	}
}

.reiz-worries-title h2 {
	position: absolute;
	display: inline-block;
	top: -22px;
	left: 90px;
	padding: 0 9px;
	line-height: 1;
	background: #090909;
	color: #f5f5f5;
	font-size: 40px;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.reiz-worries-title h2 {
		position: static;
		display: inline-block;
		padding: 0 9px;
		line-height: 1;
		font-size: 26px;
	}
}
/*ここまでworries*/

/*explanation*/
.reiz-explanation-section {
	background-color: #090909;
	transition: all .6s;
}

.reiz-explanation-section.background-color {
	background-color: #f5f5f5;
	transition: all .6s;
}

.reiz-explanation-inner {
	padding-top: 140px;
	padding-bottom: 100px;
	max-width: 1023px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.reiz-explanation-inner {
		padding-top: 60px;
		padding-bottom: 60px;
		max-width: 100%;
		margin: 0 auto;
	}
}

.reiz-explanation-flex {
	display: flex;
}
@media screen and (max-width: 768px) {
	.reiz-explanation-flex {
		flex-direction: column;
	}
}

.reiz-explanation-img {
	margin-left: -70px;
}
@media screen and (max-width: 768px) {
	.reiz-explanation-img {
		margin: 60px auto 0;
		text-align: center;
	}
	.reiz-explanation-img img {
		width: 230px;
		height: 133px;
	}
}

.reiz-explanation-content {
	margin-left: 148px;
}
@media screen and (max-width: 768px) {
	.reiz-explanation-content {
		margin-left: 0;
	}
}

.reiz-explanation-title {
	font-size: 24px;
	font-weight: 600;
	color: #f5f5f5;
	transition: all .6s;
}
.sp-reiz-explanation-title {
	display: none;
}
@media screen and (max-width: 768px) {
	.reiz-explanation-title {
		display: none;
	}
	.sp-reiz-explanation-title {
		display: block;
		font-size: 26px;
		font-weight: 600;
		color: #f5f5f5;
		transition: all .6s;
		text-align: center;
	}
	.reiz-explanation-section.background-color .sp-reiz-explanation-title {
		display: block;
		font-size: 26px;
		font-weight: 600;
		color: #090909;
		transition: all .6s;
		text-align: center;
	}
}

.reiz-explanation-section.background-color .reiz-explanation-title {
	font-size: 24px;
	font-weight: 600;
	color: #090909;
	transition: all .6s;
}

.reiz-explanation-text {
	margin-top: 18px;
	line-height: 28.8px;
	color: #f5f5f5;
	transition: all .6s;
}
@media screen and (max-width: 768px) {
	.reiz-explanation-text {
		margin-top: 18px;
		line-height: 28.8px;
		transition: all .6s;
		max-width: 345px;
		margin: 15px auto 0;
	}
}

.reiz-explanation-section.background-color .reiz-explanation-text {
	margin-top: 18px;
	line-height: 28.8px;
	color: #090909;
	transition: all .6s;
}

.air-massage {
	text-align: center;
	color: #cd8888;
	font-size: 22px;
	margin-top: 80px;
}
@media screen and (max-width: 768px) {
	.air-massage {
		font-size: 20px;
		margin-top: 60px;
	}
}

.air-massage img {
	margin-top: 18px;
}
@media screen and (max-width: 768px) {
	.air-massage img {
		margin-top: 0;
	}
}

.air-massage-img p {
	display: none;
}
@media screen and (max-width: 768px) {
	.air-massage-img {
		max-width: 247px;
		margin: 0 auto;
	}
	.air-massage-img p {
		display: block;
		font-size: 16px;
		color: #090909;
	}
	.air-massage-img p:first-of-type {
		margin-top: 20px;
	}
	.air-massage-img p:not(:first-of-type) {
		margin-top: 60px;
	}
}

/*ここまでexplanation*/

/*solution*/
.solution-section {
	background-color: #d9d9d9;
	color: #090909;
}

.solution-inner {
	padding: 100px 140px;
}
@media screen and (max-width: 768px) {
	.solution-inner {
		padding: 60px 0;
		max-width: 360px;
		margin: 0 auto;
	}
}

.solution-title h3 {
	text-align: center;
	font-size: 40px;
}
@media screen and (max-width: 768px) {
	.solution-title h3 {
		font-size: 26px;
		/* letter-spacing: -2px; */
		white-space: nowrap;
	}
}

.solution-flex ul {
	display: flex;
	justify-content: center;
	margin-top: 100px;
	height: 320px;
}
@media screen and (max-width: 768px) {
	.solution-flex ul {
		flex-direction: column;
		margin-top: 60px;
		height: auto;
	}
}

.solution-flex ul:nth-child(n+4) {
	height: 250px;
}
@media screen and (max-width: 768px) {
	.solution-flex ul:nth-child(n+4) {
		height: auto;
	}
}

.solution-flex ul:not(:last-child) {
	margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
	.solution-flex ul:not(:last-child) {
		margin-bottom: 60px;
	}
}

.solution-flex ul li {
	font-size: 13px;
	line-height: 28.6px;
	position: relative;
}
@media screen and (max-width: 768px) {
	.solution-flex ul li {
		font-size: 14px;
		line-height: 30.8px;
	}
}

.solution-flex ul li:first-child {
	width: 430px;
}
.solution-flex ul li:last-child {
	width: 630px;
}
@media screen and (max-width: 768px) {
	.solution-flex ul li:first-child {
		width: 100%;
	}
	.solution-flex ul li:last-child {
		width: 100%;
	}
}

.solution-flex-content {
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 768px) {
	.solution-flex-content {
		position: static;
		display: inline-block;
		text-align: center;
		width: 100%;
		margin: 0 auto;
	}
}

.solution-flex-num {
	font-size: 24px;
	font-weight: 900;
	padding: 2px 5px;
	border: 3px solid #090909;
}
@media screen and (max-width: 768px) {
	.solution-flex-num {
		display: inline-block;
		line-height: 43.2px;
		padding: 2px;
	}
}

.solution-sp-title {
	display: none;
}
@media screen and (max-width: 768px) {
	.solution-sp-title {
		display: inline-block;
		font-size: 20px;
		font-weight: 600;
		margin-left: 2px;
	}
}

.solution-flex-img {
	width: 330px;
	text-align: center;
	margin-right: 100px;
}
@media screen and (max-width: 768px) {
	.solution-flex-img {
		width: 212px;
		height: 150px;
		margin: 15px auto;
		}
}

.solution-flex-img img{
	vertical-align: bottom;
	position: absolute;
	bottom: 0;
	left: 0;
}
@media screen and (max-width: 768px) {
	.solution-flex-img img{
		position: static;
		width: 212px;
		height: 150px;
	}
}

.solution-item-title {
	font-size: 20px;
}
@media screen and (max-width: 768px) {
	.solution-item-title {
		display: none;
	}
}

.red-title {
	font-size: 24px;
	color: #a24c4c;
	margin-right: 11px;
}
@media screen and (max-width: 768px) {
	.red-title {
		font-size: 20px;
		color: #a24c4c;
		margin-right: 0;
	}
}

.bottom-symptoms {
	position: absolute;
	bottom: 0;
}
@media screen and (max-width: 768px) {
	.bottom-symptoms {
		position: static;
	}
}

.symptoms {
	font-size: 20px;
	color: #a24c4c;
}
@media screen and (max-width: 768px) {
	.symptoms {
		font-size: 18px;
		margin-top: 20px;
		margin-bottom: 15px;
	}
}

.symptoms-text {
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
	.symptoms-text {
		white-space: inherit;
	}
}

.blue-back {
	background-color: #7D9ED1;
	border-radius: 50%;
}
/*ここまでsolution*/
/*ここまでreizページ*/

/*magliftページ*/
/*mainvisual*/
.maglift-main-visual {
	position: relative;
	background-color: #090909;
	margin-bottom: 90px;
}
.maglift-main-visual img {
		width: 100%;
	}
@media screen and (max-width: 768px) {
	.maglift-main-visual {
		margin-bottom: 0;
	}
}

.maglift-main-visual-title {
	position: absolute;
	bottom: 0;
	left: 10%;
	color: #f5f5f5;
	font-size: 100px;
	font-weight: 600;
}
@media screen and (max-width: 768px) {
	.maglift-main-visual-title {
		bottom: inherit;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 80px;
		font-weight: 700;
		text-align: right;
		line-height: 50px;
	}
}

.maglift-main-visual-title .fs-40 {
	font-size: 40px;
	margin-left: 24px;
}
@media screen and (max-width: 768px) {
	.maglift-main-visual-title .fs-40 {
		font-size: 34px;
		margin-left: 0;
		margin-right: 38px;
	}
}
/*ここまでmainvisual*/

/*worries*/
.maglift-worries-section {
	padding-bottom: 100px;
	background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
	.maglift-worries-section {
		padding-bottom: 60px;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 768px) {
	.maglift-worries-item {
		max-width: 360px;
		margin: 40px auto 0;
	}
}

.maglift-worries-item ul {
	height: 162px;
	margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
	.maglift-worries-item ul {
		height: auto;
		margin-bottom: 0;
	}
}

.maglift-worries-item ul li {
	margin-left: 36px;
	color: #090909;
}
@media screen and (max-width: 768px) {
	.maglift-worries-item ul li {
		margin-left: 26px;
	}
}

.maglift-worries-section .worries-title {
	position: relative;
	margin: 0;
	padding: 0.5em 1em;
	border: solid 1px #090909;
}
@media screen and (max-width: 768px) {
	.maglift-worries-section .worries-title {
		margin: 0;
		padding: 0;
		border: none;
	}
}

.maglift-worries-section .worries-title h2 {
	position: absolute;
	display: inline-block;
	top: -22px;
	left: 90px;
	padding: 0 9px;
	line-height: 1;
	background: #f5f5f5;
	color: #090909;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.maglift-worries-section .worries-title h2 {
		position: static;
		text-align: center;
		width: 100%;
		margin: 0 auto;
		font-size: 26px;
		padding: 0;
	}
}

.maglift-worries-item ul li:before {
	content: "";
	position: absolute;
	width: 11px;
	height: 16px;
	top: 17px;
	left: 7px;
	-webkit-transform: rotate(36deg);
	-ms-transform: rotate(36deg);
	transform: rotate(36deg);
	border-right: 2px solid #090909;
	border-bottom: 2px solid #090909;
}
@media screen and (max-width: 768px) {
	.maglift-worries-item ul li:before {
		width: 9px;
		height: 14px;
		top: 9px;
		left: 6px;
	}
}

.maglift-worries-item ul li:after {
	content: "";
	position: absolute;
	top: 16px;
	left: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #090909;
	border-radius: 2px;
}
@media screen and (max-width: 768px) {
	.maglift-worries-item ul li:after {
		top: 8px;
		left: 0;
		width: 21px;
		height: 21px;
	}
}

/*ここまでworries*/

/*explanation*/
.maglift-explanation-section {
	background-color: #090909;
}

.maglift-explanation-inner {
	padding-top: 140px;
	padding-bottom: 100px;
	max-width: 1123px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.maglift-explanation-inner {
		padding-top: 60px;
		padding-bottom: 60px;
		max-width: 345px;
		margin: 0 auto;
	}
}

.maglift-explanation-flex {
	display: flex;
}
@media screen and (max-width: 768px) {
	.maglift-explanation-flex {
		flex-direction: column;
	}
}

.maglift-explanation-img {
	margin-left: -20px;
}
@media screen and (max-width: 768px) {
	.maglift-explanation-img {
		margin-left: 0px;
		width: 230px;
		height: auto;
		margin: 0 auto 24px;
	}
	.maglift-explanation-img img {
		width: 230px;
		height: 133px;
	}
}

.sp-maglift-explanation-title {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp-maglift-explanation-title {
		display: block;
		font-size: 26px;
		font-weight: 700;
		color: #f5f5f5;
		text-align: center;
		margin-bottom: 60px;
	}
}

.maglift-explanation-content {
	margin-left: 91px;
}
@media screen and (max-width: 768px) {
	.maglift-explanation-content {
		margin-left: 0px;
	}
}

.maglift-explanation-title {
	font-size: 24px;
	font-weight: 600;
	color: #f5f5f5;
}
@media screen and (max-width: 768px) {
	.maglift-explanation-title {
		display: none;
	}
}

.maglift-explanation-text {
	margin-top: 18px;
	line-height: 32.4px;
	color: #f5f5f5;
}
@media screen and (max-width: 768px) {
	.maglift-explanation-text {
		margin-top: 0;
		font-size: 16px;
		line-height: 28.8px;
	}
}

.maglift-image {
	text-align: center;
	margin-top: 112px;
}
@media screen and (max-width: 768px) {
	.maglift-image {
		margin-top: 30px;
		width: 345px;
		height: auto;
	}
	.maglift-image img {
		width: 345px;
		height: 101px;
	}
}

/*ここまでexplanation*/

/*difference*/
.difference-section {
	background-color: #f5f5f5;
}

.difference-inner {
	padding: 100px 140px 170px;
}
@media screen and (max-width: 768px) {
	.difference-inner {
		width: 345px;
		padding: 60px 0 0;
		margin: 0 auto;
	}
}

.difference-title h3 {
	font-size: 40px;
}
@media screen and (max-width: 768px) {
	.difference-title h3 {
		font-size: 26px;
		font-weight: 400;
		text-align: center;
	}
}

.difference-img {
	text-align: center;
	margin-top: 100px;
}
@media screen and (max-width: 768px) {
	.difference-img {
		text-align: center;
		margin-top: 30px;
	}
	.difference-img img {
		width: 100%;
		height: auto;
	}

}
/*ここまでdifference*/

/*voice*/
.voice-section {
	background-color: #d9d9d9;
}

.voice-inner {
	padding: 100px 140px;
	max-width: 1160px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.voice-inner {
		padding: 60px 0;
		max-width: 345px;
		margin: 0 auto;
	}
}

.voice-title {
	color: #090909;
	text-align: center;
}

.voice-title h3 {
	font-size: 40px;
}

.voice-title p {
	font-size: 14px;
}

.voice-flex ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 30px;
}
@media screen and (max-width: 768px) {
	.voice-flex ul {
		flex-direction: column;
		margin-top: 30px;
	}
}

.voice-flex ul li {
	width: 358px;
	height: auto;
}
@media screen and (max-width: 768px) {
	.voice-flex ul li {
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
}

.voice-flex ul li img {
	width: 358px;
	height: auto;
}
@media screen and (max-width: 768px) {
	.voice-flex ul li img {
		width: 345px;
		height: auto;
	}
}


/*ここまでvoice*/

/*ここまでmagliftページ*/