@charset "utf-8";
body {
	opacity: 0;
}

/* PC ================================================== */
@media all and (min-width:960px){
#l-wrapper {
	overflow: hidden;
}
#main {
	width: 100%;
	height: calc(100vh - 90px);
}
	.main--inner {
		width: calc(100% - 140px);
		height: calc(100% - 60px);
		margin: auto;
		display: flex;
		justify-content: space-between;
		align-items: stretch;
	}
		.main-left {
			width: 50%;
			height: 100%;
			background-color: #F3EDEB;
			display: flex;
			justify-content: center;
			align-items: center;
		}
			.main-lead {
				width: 55%;
				position: relative;
			}
				.main-lead-icon {
					width: 60px;
					height: auto;
					position: absolute;
					top: -28px;
					left: -40px;
				}
					.main-lead-icon img {
						width: 100%;
						height: auto;
					}
				.main-lead_heading {
					width: 100%;
					margin: auto auto 30px;
					font-size: 28px;
					line-height: 1.7;
					letter-spacing: .2em;
				}
				.main-lead_details {
					width: 100%;
					margin: auto auto;
					font-size: 14px;
					text-align: justify;
					line-height: 2.2;
					letter-spacing: .2em;
				}

		.main-right {
			width: 50%;
			height: 100%;
		}
			.main-right img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

/* ページ内共通 */
.section-heading-wrap {
	width: 100%;
}
	.section-heading-en {
		margin: auto auto -5px;
	}
		.section-heading-en img {
			width: 100%;
			height: auto;
		}
	#how_to_use .section-heading-en {
		width: 235px;
		height: auto;
	}
	#feeling .section-heading-en {
		width: 213px;
		height: auto;
	}
	#technique .section-heading-en {
		width: 165px;
		height: auto;
	}
	#planning .section-heading-en {
		width: 112px;
		height: auto;
	}

	.section-heading {
		margin: auto auto;
		font-size: 24px;
		font-weight: 400;
		line-height: 2.0;
		letter-spacing: .3em;
		text-align: center;
		position: relative;
	}
	#how_to_use .section-heading:before {
		content: '';
		display: block;
		width: 2px;
		height: 72px;
		border-radius: 1px;
		margin-left: -330px;
		background-color: #000000;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(0%,-50%) rotate(-29deg);
		-webkit-transform: translate(0%,-50%) rotate(-29deg);
	}
	#how_to_use .section-heading:after {
		content: '';
		display: block;
		width: 2px;
		height: 72px;
		border-radius: 1px;
		margin-right: -330px;
		background-color: #000000;
		position: absolute;
		top: 50%;
		right: 50%;
		transform: translate(0%,-50%) rotate(29deg);
		-webkit-transform: translate(0%,-50%) rotate(29deg);
	}

#how_to_use {
	width: 100%;
	padding: 0px 0px 200px;
}
	.how_to_use--inner {
		width: 100%;
	}
		#how_to_use .section-heading-wrap {
			margin: auto auto 70px;
		}
		.how_to_use-introduction {
			width: 750px;
			height: auto;
			margin: auto auto 150px;
		}
			.how_to_use-introduction-image {
				width: 100%;
				padding: 45px 0px 25px;
				background-color: #ffffff;
				border: solid 1px #000000;
				position: relative;
				z-index: 0;
			}
				.how_to_use-introduction-image img {
					width: 100%;
					height: auto;
				}
				.introduction-balloon-blue {
					width: 200px;
					height: auto;
					position: absolute;
					top: -42px;
					left: -28px;
				}
				.introduction-balloon-red {
					width: 200px;
					height: auto;
					position: absolute;
					top: -29px;
					right: -24px;
				}
				.introduction-illustration {
					width: 580px;
					height: auto;
					margin: auto auto;
				}

			.how_to_use-introduction-details {
				width: 645px;
				height: auto;
				padding: 12px 0px 30px;
				margin: -18px auto auto;
				background-color: #E1D4CE;
				border: solid 1px #000000;
				position: relative;
				z-index: 1;
			}
				.light_bulb {
					width: 70px;
					height: auto;
					margin: auto auto 10px;
				}
					.light_bulb img {
						width: 100%;
						height: auto;
					}
				.introduction-details-txt {
					width: 100%;
					font-size: 16px;
					font-weight: 400;
					line-height: 2.0;
					text-align: center;
					letter-spacing: .2em;
				}

		.how_to_use-points {
			width: 90%;
			max-width: 950px;
			margin: auto auto;
			position: relative;
		}
			.day-item {
				position: relative;
			}
			.day-morning {
				width: 100%;
				margin-bottom: 50px;
			}
			.day-daytime {
				width: 100%;
				margin-bottom: 60px;
			}
			.day-night {
				width: 100%;
				position: absolute;
				bottom: 70px;
				pointer-events: none;
			}
				.time-icon {
					margin: auto auto 15px;
				}
				.day-morning .time-icon {
					width: 129px;
				}
				.day-daytime .time-icon {
					width: 95px;
				}
				.day-night .time-icon {
					width: 115px;
				}
					.time-icon img {
						width: 100%;
						height: auto;
					}
				.time-txt {
					font-size: 28px;
					font-weight: 400;
					text-align: center;
					letter-spacing: .2em;
					line-height: 1.0;
				}

				/* 点線 */
				.short-dashed {
					width: 1px;
					height: 300px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					left: 50%;
					bottom: -50px;
					transform: translate(-50%,100%);
					-webkit-transform: translate(-50%,100%);
				}
				.long-dashed {
					width: 1px;
					height: 730px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					left: 50%;
					bottom: -50px;
					transform: translate(-50%,100%);
					-webkit-transform: translate(-50%,100%);
				}

			.point-item {
				width: 100%;
				display: flex;
				position: relative;
			}
			.point-item-01 {
				margin-bottom: 20px;
			}
			.point-item-02 {
				margin-bottom: -100px;
			}
			.point-item-03 {
				margin-bottom: -140px;
			}
				.point-item-wrap {
					text-align: center;
				}
				.point-item-01 .point-item-wrap,
				.point-item-03 .point-item-wrap {
					margin: auto 0px auto auto;
				}
				.point-item-02 .point-item-wrap,
				.point-item-04 .point-item-wrap {
					margin: auto auto auto 0px;
				}
				.point-item-01 {
					padding-right: 14px;
				}
					.point-item-heading {
						display: inline-block;
						padding: 10px 15px;
						margin: auto auto;
						background-color: #E1D4CE;
						border: solid 1px #000000;
						position: relative;
					}
					.point-item-heading:before,
					.point-item-heading:after {
						content: '';
						display: block;
						border-radius: 50%;
						position: absolute;
						top: 0;
						left: 50%;
						transform: translate(-50%,-50%);
						-webkit-transform: translate(-50%,-50%);
					}
					.point-item-heading:before {
						width: 64px;
						height: 64px;
						background-color: #E1D4CE;
						z-index: 1;
					}
					.point-item-heading:after {
						width: 66px;
						height: 66px;
						border: solid 1px #000000;
						z-index: -1;
					}
						.point-number {
							position: absolute;
							top: 6px;
							left: 50%;
							transform: translate(-50%,-100%);
							-webkit-transform: translate(-50%,-100%);
							z-index: 2;
						}
							.point-number img {
								width: 26px;
								height: auto;
							}

						.point-item-heading-txt {
							width: 100%;
							font-size: 14px;
							font-weight: 400;
							line-height: 1.2;
							text-align: center;
							letter-spacing: .1em;
							position: relative;
							z-index: 2;
						}
					.point-item-details {
						margin: -19px auto auto;
						border: solid 1px #000000;
					}
					/* テキスト共通 */
					.point-time_txt {
						padding-bottom: 8px;
						border-bottom: solid 1px #000000;
						font-size: 16px;
						font-weight: 400;
						text-align: center;
						line-height: 1.4;
						letter-spacing: .2em;
						position: absolute;
					}
					.point-01-time_txt {
						top: -17px;
						left: 240px;
					}
					.point-02-time_txt {
						top: -107px;
						right: 300px;
					}
					.point-04-time_txt {
						bottom: 180px;
						right: 30px;
					}

					.point-item-01 .point-item-details {
						padding: 42px 8px 20px 17px;
					}
						.point-item-01 .point-item-details img {
							width: 375px;
							height: auto;
						}
						.point-note {
							width: 100%;
							margin: 5px auto auto;
							font-size: 10px;
							font-weight: 400;
							color: #7C8082;
							text-align: left;
						}
					.point-01-illust {
						width: 215px;
						height: auto;
						position: absolute;
						top: 45px;
						left: 90px;
					}
						.point-01-illust img {
							width: 100%;
							height: auto;
						}
						.point-01-illust_balloon {
							width: 100px;
							height: auto;
							position: absolute;
							top: -50px;
							left: -70px;
						}

					.point-item-02 .point-item-details {
						width: 380px;
						padding: 35px 10px 15px 30px;
						display: flex;
						justify-content: space-between;
						align-items: center;
					}
						.point-item-02 .point-item-details p {
							width: 50%;
							font-size: 14px;
							font-weight: 400;
							text-align: justify;
							letter-spacing: .1em;
						}
						.point-item-02 .point-item-details img {
							width: 48%;
							height: auto;
						}
					.point-02-illust {
						width: 280px;
						height: auto;
						position: absolute;
						top: -155px;
						right: 100px;
					}
						.point-02-illust img {
							width: 100%;
							height: auto;
						}

					.point-item-03 .point-item-details {
						padding: 42px 32px 0px;
					}
						.point-item-03 .point-item-details .balloon {
							width: 315px;
							height: auto;
							margin: auto auto 6px;
						}
							.point-item-03 .point-item-details .balloon img {
								width: 100%;
							}
						.point-item-03 .point-item-details .illust {
							width: 290px;
							height: auto;
							margin: auto auto 12px;
						}
							.point-item-03 .point-item-details .illust img {
								width: 100%;
								height: auto;
							}
						.point-item-03 .point-item-details .txt {
							width: 100%;
							padding-left: 12px;
							margin: auto auto 15px;
							position: relative;
						}
							.point-item-03 .point-item-details .txt p {
								width: 100%;
								font-size: 14px;
								font-weight: 400;
								letter-spacing: 0.05em;
								line-height: 1.6;
								text-align: left;
							}
							.point-item-03 .point-item-details .txt img {
								width: 92px;
								height: auto;
								position: absolute;
								bottom: -5px;
								right: -12px;
							}

						.point-item-03 .point-item-details .therefore {
							width: 100%;
							padding: 15px 0px;
							position: relative;
						}
							.point-item-03 .point-item-details .therefore p {
								width: 100%;
								font-size: 16px;
								font-weight: 400;
								line-height: 1.6;
								text-align: center;
								color: #BC846A;
							}
							.point-item-03 .point-item-details .therefore .therefore-flower-left {
								width: 75px;
								position: absolute;
								bottom: 0;
								left: -18px;
							}
								.point-item-03 .point-item-details .therefore .therefore-flower-left img {
									width: 100%;
									height: auto;
								}
							.point-item-03 .point-item-details .therefore .therefore-flower-right {
								width: 75px;
								position: absolute;
								bottom: 0;
								right: -18px;
							}
								.point-item-03 .point-item-details .therefore .therefore-flower-right img {
									width: 100%;
									height: auto;
								}

					.point-item-04 .point-item-details {
						width: 380px;
						padding: 38px 0px 3px;
					}
						.point-item-04 .point-item-details p {
							width: 95%;
							margin: auto auto 10px;
							font-size: 14px;
							font-weight: 400;
							text-align: justify;
							letter-spacing: .1em;
						}
						.point-item-04 .point-item-details img {
							width: 100%;
							height: auto;
						}
					.point-04-illust {
						width: 270px;
						height: auto;
						position: absolute;
						bottom: -80px;
						right: 108px;
					}
						.point-04-illust img {
							width: 100%;
							height: auto;
						}

#feeling {
	width: 100%;
	padding: 0px 0px 165px;
}
	.feeling-edge_top {
		width: 100%;
		min-width: 2200px;
		position: absolute;
		top: 1px;
		left: 50%;
		transform: translate(-50%,-100%);
		-webkit-transform: translate(-50%,-100%);
		z-index: -1;
	}
	.feeling-edge_bottom {
		width: 100%;
		min-width: 2200px;
		position: absolute;
		bottom: 1px;
		left: 50%;
		transform: translate(-50%,100%);
		-webkit-transform: translate(-50%,100%);
		z-index: -1;
	}
		.feeling-edge_top img,
		.feeling-edge_bottom img {
			width: 100%;
			height: auto;
		}
	.feeling--inner {
		width: 100%;
		padding: 80px 0px 70px;
		background-color: #F3EDEB;
		position: relative;
	}
		#feeling .section-heading-wrap {
			margin: auto auto 60px;
		}
		.feeling-list-container {
			width: 90%;
			max-width: 750px;
			margin: auto auto;
			position: relative;
		}
			.feeling-list {
				width: 100%;
				display: flex;
				justify-content: space-between;
				align-items: flex-start;
			}
				.feeling-item {
					width: 30%;
				}
					.feeling-image {
						width: 100%;
						height: auto;
						margin: auto auto 30px;
					}
						.feeling-image img {
							width: 100%;
							height: auto;
						}
					.feeling-txt {
						width: 100%;
						font-size: 14px;
						font-weight: 400;
						line-height: 1.6;
						letter-spacing: .1em;
						text-align: justify;
					}
					.feeling-note {
						margin-top: 12px;
						font-size: 10px;
						letter-spacing: .1em;
						color: #7C8082;
					}

			.feeling-deco_01 {
				width: 175px;
				height: auto;
				position: absolute;
				top: -121px;
				right: -181px;
			}
			.feeling-deco_02 {
				width: 110px;
				height: auto;
				position: absolute;
				bottom: 5px;
				left: -164px;
			}
				.feeling-deco_01 img,
				.feeling-deco_02 img {
					width: 100%;
					height: auto;
				}

#technique {
	width: 100%;
	padding: 0px 0px 120px;
}
	.technique--inner {
		width: calc(100% - 140px);
		padding: 85px 0px 155px;
		margin: auto auto;
		background-color: #E7EAEF;
	}
		#technique .section-heading-wrap {
			margin: auto auto 55px;
		}
			#technique .section-heading-en {
				margin: auto auto 5px;
			}
			.technique-heading_frame {
				width: 90%;
				max-width: 850px;
				margin: auto auto;
				position: relative;
			}
				.technique-heading_frame img {
					width: 100%;
					height: auto;
				}
			#technique .section-heading {
				width: 100%;
				line-height: 1.45;
				position: absolute;
				top: 8px;
				left: 50%;
				transform: translate(-50%,0%);
				-webkit-transform: translate(-50%,0%);
			}
				#technique .section-heading small {
					font-size: 16px;
				}

		.technique-list {
			width: 90%;
			max-width: 840px;
			margin: auto auto !important;
		}
			.technique-item {
				width: 100%;
			}
			.technique-item:first-of-type {
				margin-bottom: 70px;
			}
				.technique-item-heading {
					width: 100%;
					display: flex;
					justify-content: space-between;
					align-items: flex-start;
				}
				.tsuchiya .technique-item-heading {
					margin: auto auto 70px;
				}
				.tanaka .technique-item-heading {
					margin: auto auto 40px;
				}
					.technique-for_you {
						width: auto;
						padding: 30px 60px;
						background-color: #ffffff;
						position: relative;
					}
						.technique-for_you-txt {
							font-size: 22px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .2em;
						}
						.technique-for_you:before {
							content: "";
							height: 0;
							display: block;
							position: absolute;
							bottom: 0px;
							right: 0px;
							border-bottom: solid 22px #A4AEC2;
							border-left: solid 22px transparent;
							z-index: 2;
						}

					.technique-advisor {
						width: auto;
						display: flex;
						justify-content: flex-end;
						align-items: flex-start;
					}
						.technique-advisor-image {
							width: 125px;
							height: auto;
							margin-top: -5px;
							margin-right: 28px;
						}
							.technique-advisor-image img {
								width: 100%;
								height: auto;
							}

						.technique-advisor-details {
							width: auto;
							padding-top: 7px;
						}
							.advisor-name-position {
								font-size: 14px;
								font-weight: 400;
								line-height: 1.5;
							}
							.advisor-name-ja {
								margin: 12px auto 10px;
								font-size: 21px;
								font-weight: 400;
								line-height: 1.0;
							}
							.advisor-name-en {
								font-size: 12px;
								font-weight: 500;
								letter-spacing: .2em;
							}

				.technique-tsuchiya_contents {
					width: 100%;
					display: flex;
					justify-content: space-between;
					align-items: center;
				}
					.technique-tsuchiya_contents-details {
						width: 55%;
					}
						.technique-tsuchiya_contents-heading {
							width: 100%;
							margin-bottom: 20px;
							font-size: 18px;
							line-height: 1.0;
							letter-spacing: .2em;
							white-space: nowrap;
						}
							.technique-tsuchiya_contents-heading small {
								font-size: 10px;
								margin-left: -3px;
								margin-right: 3px;
							}
						.technique-tsuchiya_contents-txt {
							width: 100%;
							margin-bottom: 5px;
							font-size: 14px;
							line-height: 1.8;
							text-align: justify;
							letter-spacing: .1em;
						}
						.technique-tsuchiya_contents-note {
							font-size: 10px;
							color: #7C8082;
							letter-spacing: .1em;
						}

					.technique-tsuchiya_contents-image {
						width: 45%;
						display: flex;
						justify-content: center;
						align-items: center;
					}
						.technique-tsuchiya_contents-image img {
							width: 300px;
							height: auto;
						}

				.tsuchiya-skincare_flow {
					width: 100%;
					margin-top: 35px;
				}
					.skincare_flow-list {
						width: 100%;
						display: flex;
						justify-content: space-between;
						align-items: flex-start;
					}
						.skincare_flow-item {
							width: 30%;
						}
							.skincare_flow-image {
								width: 100%;
								margin: auto auto 25px;
								position: relative;
							}
								.skincare_flow-image img {
									width: 100%;
									height: auto;
								}
								.skincare_flow-no {
									width: 62px;
									height: 62px;
									border-radius: 50%;
									background-color: rgba(164,174,194,0.8);
									font-size: 30px;
									font-weight: 400;
									text-align: center;
									line-height: 62px;
									letter-spacing: 0;
									color: #ffffff;
									position: absolute;
									top: 8px;
									right: 2px;
								}
								.skincare_flow-spatula {
									width: 97px;
									height: auto;
									position: absolute;
									bottom: 0;
									left: -30px;
								}
							.skincare_flow-txt {
								width: 90%;
								margin: auto auto;
								font-size: 14px;
								font-weight: 400;
								letter-spacing: .1em;
								text-align: justify;
							}

				.technique-item-dashed {
					width: 100%;
					height: 1px;
					margin-top: 45px;
					background-image : linear-gradient(to right, #000, #000 7px, transparent 7px, transparent 14px);
					background-size: 14px 7px;
					background-position: left bottom;
					background-repeat: repeat-x;
				}

				.technique-tanaka_contents {
					width: 100%;
					display: flex;
					justify-content: space-between;
					align-items: flex-end;
				}
					.technique-tanaka_contents-details {
						width: 46%;
					}
						.technique-tanaka_contents-heading {
							width: 100%;
							margin-bottom: 20px;
							font-size: 18px;
							line-height: 1.0;
							letter-spacing: .2em;
							white-space: nowrap;
						}
							.technique-tanaka_contents-heading small {
								font-size: 10px;
								margin-left: -3px;
								margin-right: 3px;
							}
						.technique-tanaka_contents-txt {
							width: 100%;
							margin-bottom: 5px;
							font-size: 14px;
							line-height: 1.8;
							text-align: justify;
							letter-spacing: .1em;
						}

					.technique-tanaka_contents-image {
						width: 49%;
					}
						.technique-tanaka_contents-image img {
							width: 100%;
							height: auto;
							margin-bottom: -20px;
						}

#planning {
	width: 100%;
	color: #4D2D26;
}
	.planning--inner {
		width: 90%;
		max-width: 840px;
		padding: 40px 0px 80px;
		margin: auto auto;
		position: relative;
	}
		.planning-mask {
			width: 90vw;
			height: calc(100% + 50px);
			margin-top: -50px;
			background-color: rgba(214, 174, 155, .68);
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
			-webkit-transform: translate(-50%,-50%);
			z-index: 5;
		}
			.planning-mask p {
				display: inline-block;
				padding: 20px 45px;
				background-color: #ffffff;
				font-size: 14px;
				letter-spacing: .2em;
				color: #4D2D26;
				font-feature-settings : "palt";
				position: absolute;
				top: 150px;
				left: 50%;
				transform: translate(-50%,-50%);
				-webkit-transform: translate(-50%,-50%);
			}
		.planning-heading-wrap {
			width: 100%;
			margin: auto auto 40px;
			position: relative;
		}
			.planning-heading-deco {
				width: 55px;
				height: auto;
				margin-left: -150px;
				position: absolute;
				top: -39px;
				left: 50%;
			}
				.planning-heading-deco img {
					width: 100%;
					height: auto;
				}
			.planning-heading-subtxt {
				width: 100%;
				margin-bottom: 18px;
				font-size: 14px;
				font-weight: 400;
				letter-spacing: .2em;
				line-height: 1.0;
				text-align: center;
			}
			.planning-heading-txt {
				width: 100%;
				font-size: 24px;
				font-weight: 400;
				line-height: 1.8;
				text-align: center;
				letter-spacing: .3em;
			}
				.planning-heading-txt span {
					font-size: 28px;
				}

			.planning-heading-mokumoku_01 {
				width: 50px;
				height: auto;
				position: absolute;
				bottom: 80px;
				left: 55px;
			}
				.planning-heading-mokumoku_01 img {
					width: 100%;
					height: auto;
				}
			.planning-heading-mokumoku_02 {
				width: 75px;
				height: auto;
				position: absolute;
				bottom: 85px;
				right: 85px;
			}
				.planning-heading-mokumoku_02 img {
					width: 100%;
					height: auto;
				}

		.planning-txt {
			width: 100%;
			margin: auto auto 60px;
			font-size: 14px;
			font-weight: 400;
			line-height: 2.0;
			letter-spacing: .1em;
			text-align: center;
		}

		.planning-example {
			width: 80%;
			max-width: 595px;
			padding: 18px 0px;
			margin: auto auto 75px;
			border-top: solid 1px #4D2D26;
			border-bottom: solid 1px #4D2D26;
			font-size: 14px;
			font-weight: 400;
			position: relative;
		}
			.example-heading {
				display: inline-block;
				padding: 0px 3px;
				background-color: #ffffff;
				letter-spacing: .1em;
				position: absolute;
				top: 0;
				left: 50%;
				transform: translate(-50%,-50%);
				-webkit-transform: translate(-50%,-50%);
			}
			.example-list {
				width: 100%;
			}
				.example-item {
					margin-bottom: 3px;
					line-height: 2;
					letter-spacing: .1em;
				}
				.example-item:last-of-type {
					margin-bottom: 0px;
				}
					.example-item:before {
						content: '★';
						margin-right: 5px;
					}

		.planning-contents {
			width: 100%;
			max-width: 750px;
			padding-left: 47px;
			margin: auto auto 75px;
			position: relative;
		}
			.planning-contents-deco_left {
				width: 54px;
				height: auto;
				position: absolute;
				top: 50%;
				left: 0;
				transform: translate(0%,-50%);
				-webkit-transform: translate(0%,-50%);
			}
				.planning-contents-deco_left img {
					width: 100%;
					height: auto;
				}
			.planning-contents-deco_top_sp {
				display: none;
			}
			.planning-contents-deco_icon {
				width: 65px;
				height: auto;
				position: absolute;
				top: 50%;
				left: 74px;
				transform: translate(0%,-50%);
				-webkit-transform: translate(0%,-50%);
			}
				.planning-contents-deco_icon img {
					width: 100%;
					height: auto;
				}
			.planning-contents-txt {
				width: 100%;
				font-size: 20px;
				font-weight: 400;
				line-height: 2.0;
				letter-spacing: .1em;
				display: flex;
				justify-content: center;
				align-items: center;
			}
			.planning-contents-deco_right {
				width: 54px;
				height: auto;
				position: absolute;
				top: 50%;
				right: 0;
				transform: translate(0%,-50%);
				-webkit-transform: translate(0%,-50%);
			}
				.planning-contents-deco_right img {
					width: 100%;
					height: auto;
				}

		.about-roku {
			width: 100%;
			margin: auto auto 140px;
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
		}
			.about-roku-details {
				width: 46%;
				padding-right: 45px;
			}
				.about-roku-icon {
					width: 160px;
					height: auto;
					margin-bottom: 27px;
				}
					.about-roku-icon img {
						width: 100%;
						height: auto;
					}

				.about-roku-profile {
					width: 100%;
				}
					.about-roku-profile dt {
						width: 100%;
						margin: auto auto 20px;
						font-size: 20px;
						font-weight: 400;
						line-height: 1.0;
						letter-spacing: .1em;
					}
						.about-roku-profile dt i {
							margin-left: 15px;
							margin-right: 10px;
							font-size: 20px;
							position: relative;
							bottom: -1px;
						}
						.about-roku-profile dt a {
							font-size: 14px;
							letter-spacing: 0em;
							color: #4D2D26;
						}
					.about-roku-profile dd {
						width: 100%;
						font-size: 14px;
						font-weight: 400;
						line-height: 2.3;
						text-align: justify;
					}
					.about-roku-profile dd a {
						color: #DB6FA5;
						text-decoration: underline;
					}

			.about-roku-image {
				width: 54%;
			}
				.about-roku-image img {
					width: 100%;
					height: auto;
				}

		.planning-entry {
			width: 100%;
		}
			.planning-entry .section-heading-wrap {
				margin: auto auto 45px;
			}
			.entry-application_period {
				width: 100%;
				margin: auto auto 60px;
				font-size: 18px;
				line-height: 1.0;
				letter-spacing: .2em;
				display: flex;
				justify-content: center;
				align-items: center;
			}
				.entry-application_period dt {
					width: 140px;
					height: auto;
					padding: 10px 0px 11px;
					margin-right: 25px;
					border: solid 1px #4D2D26;
					text-align: center;
					text-indent: .2em;
				}

			.entry-step {
				width: 80%;
				max-width: 710px;
				margin: auto auto 55px;
			}
				.entry-step-list {
					width: 100%;
					display: flex;
					justify-content: space-between;
					align-items: flex-start;
				}
					.entry-step-item {
						width: 48.5%;
					}
						.entry-step-image {
							width: 100%;
							height: auto;
							margin: auto auto 15px;
						}
							.entry-step-image img {
								width: 100%;
								height: auto;
							}
						.entry-step-txt {
							width: 100%;
							font-size: 14px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .1em;
							text-align: justify;
							word-break: break-all;
						}
						.entry-step-note {
							margin-top: 3px;
							font-size: 10px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .1em;
							color: #7C8082;
						}

			.form-btn {
				display: block;
				width: 390px;
				height: 80px;
				margin: auto auto;
				background-color: #D6AE9B;
				font-size: 20px;
				font-weight: 400;
				line-height: 80px;
				text-align: center;
				letter-spacing: .2em;
				text-indent: .2em;
				color: #ffffff;
				position: relative;
			}
				.form-btn img {
					width: 36px;
					height: auto;
					margin-top: -18px;
					position: absolute;
					top: 50%;
					right: 20px;
					transition: .2s;
					-webkit-transition: .2s;
				}
				.form-btn:hover img {
					right: 16px;
				}
}

/* Tablet ================================================== */
@media all and (min-width:560px) and (max-width:959px){
#l-wrapper {
	overflow: hidden;
}
#main {
	width: 100%;
	height: auto;
}
	.main--inner {
		width: calc(100% - 90px);
		height: auto;
		margin: auto;
		display: flex;
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: center;
	}
		.main-left {
			width: 100%;
			height: auto;
			padding: 55px 0px 35px;
			background-color: #F3EDEB;
			display: flex;
			justify-content: center;
			align-items: center;
		}
			.main-lead {
				width: 90%;
				margin: auto auto;
				position: relative;
			}
				.main-lead-icon {
					width: 40px;
					height: auto;
					margin-left: -140px;
					position: absolute;
					top: -26px;
					left: 50%;
					transform: translate(-50%,0%);
					-webkit-transform: translate(-50%,0%);
				}
					.main-lead-icon img {
						width: 100%;
						height: auto;
					}
				.main-lead_heading {
					width: 100%;
					margin: auto auto 50px;
					font-size: 20px;
					line-height: 1.0;
					letter-spacing: .2em;
					text-align: center;
				}
				.main-lead_details {
					width: 100%;
					margin: auto auto;
					font-size: 14px;
					text-align: justify;
					line-height: 2.2;
					letter-spacing: .2em;
				}

		.main-right {
			width: 100%;
			height: auto;
		}
			.main-right img {
				width: 100%;
				height: auto;
			}

/* ページ内共通 */
.section-heading-wrap {
	width: 100%;
}
	.section-heading-en {
		margin: auto auto 3px;
	}
		.section-heading-en img {
			width: 100%;
			height: auto;
		}
	#how_to_use .section-heading-en {
		width: 190px;
		height: auto;
	}
	#feeling .section-heading-en {
		width: 175px;
		height: auto;
	}
	#technique .section-heading-en {
		width: 135px;
		height: auto;
	}
	#planning .section-heading-en {
		width: 92px;
		height: auto;
	}

	.section-heading {
		width: 100%;
		margin: auto auto;
		font-size: 18px;
		font-weight: 400;
		line-height: 1.55;
		letter-spacing: .3em;
		text-align: center;
		position: relative;
	}
	#how_to_use .section-heading:before {
		content: '';
		display: block;
		width: 1px;
		height: 90px;
		border-radius: .5px;
		background-color: #000000;
		position: absolute;
		top: 50%;
		left: 9%;
		transform: translate(0%,-50%) rotate(-20deg);
		-webkit-transform: translate(0%,-50%) rotate(-20deg);
	}
	#how_to_use .section-heading:after {
		content: '';
		display: block;
		width: 1px;
		height: 90px;
		border-radius: .5px;
		background-color: #000000;
		position: absolute;
		top: 50%;
		right: 9%;
		transform: translate(0%,-50%) rotate(20deg);
		-webkit-transform: translate(0%,-50%) rotate(20deg);
	}

#how_to_use {
	width: 100%;
	padding: 60px 0px 100px;
}
	.how_to_use--inner {
		width: 90%;
		margin: auto auto;
	}
		#how_to_use .section-heading-wrap {
			margin: auto auto 30px;
		}
		.how_to_use-introduction {
			width: 100%;
			height: auto;
			margin: auto auto 45px;
		}
			.how_to_use-introduction-image {
				width: 70%;
				padding: 180px 0px 5px;
				margin: auto auto 25px;
				background-color: #ffffff;
				border: solid 1px #000000;
				position: relative;
				z-index: 0;
			}
				.how_to_use-introduction-image img {
					width: 100%;
					height: auto;
				}
				.introduction-balloon-blue {
					width: 140px;
					height: auto;
					position: absolute;
					top: 37px;
					left: -10px;
				}
				.introduction-balloon-red {
					width: 160px;
					height: auto;
					position: absolute;
					top: 15px;
					right: -10px;
				}
				.introduction-illustration {
					width: 100%;
					height: auto;
					margin: auto auto;
				}

			.how_to_use-introduction-details {
				width: 100%;
				height: auto;
				padding: 10px 0px 25px;
				margin: auto auto;
				background-color: #E1D4CE;
				border: solid 1px #000000;
				position: relative;
				z-index: 1;
			}
				.light_bulb {
					width: 50px;
					height: auto;
					margin: auto auto 5px;
				}
					.light_bulb img {
						width: 100%;
						height: auto;
					}
				.introduction-details-txt {
					width: 100%;
					font-size: 14px;
					font-weight: 400;
					line-height: 2.0;
					text-align: center;
					letter-spacing: .2em;
				}

		.how_to_use-points {
			width: 65%;
			margin: auto auto;
			position: relative;
		}
			.day-item {
				position: relative;
				background-color: #ffffff;
			}
			.day-morning {
				width: 100%;
				margin-bottom: 140px;
			}
			.day-daytime {
				width: 100%;
				padding: 15px 0px;
				margin: 190px auto 125px;
			}
			.day-night {
				width: 100%;
				padding: 12px 0px 16px;
				margin: 62px auto 93px;
			}
				.time-icon {
					margin: auto auto 15px;
				}
				.day-morning .time-icon {
					width: 95px;
				}
				.day-daytime .time-icon {
					width: 95px;
				}
				.day-night .time-icon {
					width: 115px;
				}
					.time-icon img {
						width: 100%;
						height: auto;
					}
				.time-txt {
					font-size: 20px;
					font-weight: 400;
					text-align: center;
					letter-spacing: .2em;
					line-height: 1.0;
				}

				/* 点線 */
				.short-dashed {
					content: '';
					display: block;
					width: 1px;
					height: 76px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					left: 50%;
					bottom: -17px;
					transform: translate(-50%,100%);
					-webkit-transform: translate(-50%,100%);
					z-index: -1;
				}
				.long-dashed {
					width: 1px;
					height: 370px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					top: -135px;
					left: 50%;
					transform: translate(-50%,0%);
					-webkit-transform: translate(-50%,0%);
					z-index: -1;
				}
				.night-dashed {
					width: 1px;
					height: 216px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					top: -27px;
					left: 50%;
					transform: translate(-50%,0%);
					-webkit-transform: translate(-50%,0%);
					z-index: -1;
				}
				.point-item-04-dashed {
					width: 1px;
					height: 90px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					top: -130px;
					left: 50%;
					transform: translate(-50%,0%);
					-webkit-transform: translate(-50%,0%);
					z-index: -1;
				}

			.point-item {
				width: 100%;
				position: relative;
			}
			.point-item-01 {

			}
			.point-item-02 {

			}
			.point-item-03 {
				margin-bottom: 145px;
			}
				.point-item-wrap {
					text-align: center;
				}
					.point-item-heading {
						width: 90%;
						padding: 6px 15px;
						margin: auto auto;
						background-color: #E1D4CE;
						border: solid 1px #000000;
						position: relative;
					}
					.point-item-heading:before,
					.point-item-heading:after {
						content: '';
						display: block;
						border-radius: 50%;
						position: absolute;
						top: 0;
						left: 50%;
						transform: translate(-50%,-50%);
						-webkit-transform: translate(-50%,-50%);
					}
					.point-item-heading:before {
						width: 64px;
						height: 64px;
						background-color: #E1D4CE;
						z-index: 1;
					}
					.point-item-heading:after {
						width: 66px;
						height: 66px;
						border: solid 1px #000000;
						z-index: -1;
					}
						.point-number {
							position: absolute;
							top: 6px;
							left: 50%;
							transform: translate(-50%,-100%);
							-webkit-transform: translate(-50%,-100%);
							z-index: 2;
						}
							.point-number img {
								width: 26px;
								height: auto;
							}

						.point-item-heading-txt {
							width: 100%;
							font-size: 14px;
							font-weight: 400;
							line-height: 1.6;
							text-align: center;
							letter-spacing: .1em;
							position: relative;
							z-index: 2;
						}
					.point-item-details {
						margin: -19px auto auto;
						border: solid 1px #000000;
					}
					/* テキスト共通 */
					.point-time_txt {
						padding: 0px 0px;
						background-color: #ffffff;
						font-size: 10px;
						font-weight: 400;
						text-align: center;
						line-height: 1.4;
						letter-spacing: .2em;
						position: absolute;
						transform: translate(-50%,0%);
						-webkit-transform: translate(-50%,0%);
						z-index: 2;
					}
					.point-time_txt:before {
						content: '';
						width: 100%;
						height: calc(100% + 12px);
						position: absolute;
						top: -6px;
						left: 0;
						background-color: #ffffff;
						z-index: -1;
					}
					.point-time_txt:after {
						content: '';
						display: block;
						width: 100%;
						height: 0px;
						margin-top: 6px;
						border-bottom: solid 1px #000000;
						z-index: 1;
					}
					.point-01-time_txt {
						bottom: -72px;
						left: 50%;
					}
					.point-02-time_txt {
						top: -100px;
						left: 50%;
					}
					.point-04-time_txt {
						top: -110px;
						left: 50%;
					}

					.point-item-01 .point-item-details {
						width: 100%;
						padding: 50px 0px 15px;
					}
						.point-item-01 .point-item-details img {
							width: 95%;
							height: auto;
							margin: auto auto;
						}
						.point-note {
							width: 100%;
							margin: 5px auto auto;
							font-size: 10px;
							font-weight: 400;
							color: #7C8082;
							text-align: left;
						}
					.point-01-illust {
						display: none;
					}

					.point-item-02 .point-item-details {
						width: 100%;
						padding: 40px 0px 15px 15px;
						display: flex;
						justify-content: space-between;
						align-items: center;
					}
						.point-item-02 .point-item-details p {
							width: 50%;
							font-size: 14px;
							font-weight: 400;
							text-align: justify;
							letter-spacing: .1em;
							line-height: 1.7;
						}
						.point-item-02 .point-item-details img {
							width: 50%;
							height: auto;
						}
					.point-02-illust {
						width: 150px;
						height: auto;
						position: absolute;
						top: -380px;
						right: 0;
					}
						.point-02-illust img {
							width: 100%;
							height: auto;
						}

					.point-item-03 .point-item-details {
						padding: 42px 0px 0px;
					}
						.point-item-03 .point-item-details .balloon {
							width: 90%;
							height: auto;
							margin: auto auto 6px;
						}
							.point-item-03 .point-item-details .balloon img {
								width: 100%;
							}
						.point-item-03 .point-item-details .illust {
							width: 85%;
							height: auto;
							margin: auto auto 12px;
						}
							.point-item-03 .point-item-details .illust img {
								width: 100%;
								height: auto;
							}
						.point-item-03 .point-item-details .txt {
							width: 85%;
							margin: auto auto 10px;
							position: relative;
						}
							.point-item-03 .point-item-details .txt p {
								width: 100%;
								font-size: 14px;
								font-weight: 400;
								letter-spacing: 0.05em;
								line-height: 1.6;
								text-align: left;
							}
							.point-item-03 .point-item-details .txt img {
								width: 90px;
								height: auto;
								position: absolute;
								bottom: 1px;
								right: -12px;
							}

						.point-item-03 .point-item-details .therefore {
							width: 100%;
							padding: 20px 0px;
							position: relative;
						}
							.point-item-03 .point-item-details .therefore p {
								width: 100%;
								font-size: 16px;
								font-weight: 400;
								line-height: 1.6;
								text-align: center;
								color: #BC846A;
							}
							.point-item-03 .point-item-details .therefore .therefore-flower-left {
								width: 75px;
								position: absolute;
								bottom: 0;
								left: 0px;
							}
								.point-item-03 .point-item-details .therefore .therefore-flower-left img {
									width: 100%;
									height: auto;
								}
							.point-item-03 .point-item-details .therefore .therefore-flower-right {
								width: 75px;
								position: absolute;
								bottom: 0;
								right: -10px;
							}
								.point-item-03 .point-item-details .therefore .therefore-flower-right img {
									width: 100%;
									height: auto;
								}

					.point-item-04 .point-item-details {
						width: 100%;
						padding: 30px 0px 5px;
					}
						.point-item-04 .point-item-details p {
							width: 87%;
							margin: auto auto 10px;
							font-size: 14px;
							font-weight: 400;
							text-align: justify;
							letter-spacing: .1em;
						}
						.point-item-04 .point-item-details img {
							width: 105%;
							height: auto;
							margin-left: -15px;
						}
					.point-04-illust {
						display: none;
					}

#feeling {
	width: 100%;
	padding: 0px 0px 100px;
}
	.feeling-edge_top {
		width: 100%;
		min-width: 1400px;
		position: absolute;
		top: 1px;
		left: 50%;
		transform: translate(-50%,-100%);
		-webkit-transform: translate(-50%,-100%);
		z-index: -1;
	}
	.feeling-edge_bottom {
		width: 100%;
		min-width: 1400px;
		position: absolute;
		bottom: 1px;
		left: 50%;
		transform: translate(-50%,100%);
		-webkit-transform: translate(-50%,100%);
		z-index: -1;
	}
		.feeling-edge_top img,
		.feeling-edge_bottom img {
			width: 100%;
			height: auto;
		}
	.feeling--inner {
		width: 100%;
		padding: 30px 0px 45px;
		background-color: #F3EDEB;
		position: relative;
	}
		#feeling .section-heading-wrap {
			margin: auto auto 50px;
		}
		.feeling-list-container {
			width: 90%;
			margin: auto auto;
			position: relative;
		}
			.feeling-list {
				width: 100%;
				display: flex;
				justify-content: space-between;
				align-items: flex-start;
			}
				.feeling-item {
					width: 32%;
				}
					.feeling-image {
						width: 100%;
						height: auto;
						margin: auto auto 10px;
					}
						.feeling-image img {
							width: 100%;
							height: auto;
						}
					.feeling-txt {
						width: 100%;
						font-size: 14px;
						font-weight: 400;
						line-height: 1.6;
						letter-spacing: .1em;
						text-align: justify;
					}
					.feeling-note {
						margin-top: 12px;
						font-size: 10px;
						letter-spacing: .1em;
						color: #7C8082;
					}

			.feeling-deco_01 {
				width: 175px;
				height: auto;
				position: absolute;
				top: -121px;
				right: -181px;
			}
			.feeling-deco_02 {
				width: 110px;
				height: auto;
				position: absolute;
				bottom: 5px;
				left: -164px;
			}
				.feeling-deco_01 img,
				.feeling-deco_02 img {
					width: 100%;
					height: auto;
				}

#technique {
	width: 100%;
	padding: 0px 0px 60px;
}
	.technique--inner {
		width: 90%;
		padding: 30px 0px 45px;
		margin: auto auto;
		background-color: #E7EAEF;
	}
		#technique .section-heading-wrap {
			margin: auto auto 55px;
		}
			#technique .section-heading-en {
				margin: auto auto 5px;
			}
			.technique-heading_frame {
				width: 90%;
				max-width: 850px;
				margin: auto auto;
				position: relative;
			}
				.technique-heading_frame img {
					width: 100%;
					height: auto;
				}
			#technique .section-heading {
				width: 100%;
				font-size: 18px;
				line-height: 1.2;
				position: absolute;
				top: 7px;
				left: 50%;
				transform: translate(-50%,0%);
				-webkit-transform: translate(-50%,0%);
			}
				#technique .section-heading small {
					display: inline-block;
					font-size: 14px;
					margin-bottom: 7px;
				}

		.technique-list {
			width: 90%;
			margin: auto auto !important;
		}
			.technique-item {
				width: 100%;
			}
			.technique-item:first-of-type {
				margin-bottom: 55px;
			}
				.technique-item-heading {
					width: 100%;
					text-align: center;
				}
				.tsuchiya .technique-item-heading {
					margin: auto auto 55px;
				}
				.tanaka .technique-item-heading {
					margin: auto auto 40px;
				}
					.technique-for_you {
						display: inline-block;
						width: auto;
						padding: 18px 40px;
						margin-bottom: 50px;
						background-color: #ffffff;
						position: relative;
					}
						.technique-for_you-txt {
							font-size: 16px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .2em;
							text-align: left;
						}
						.technique-for_you:before {
							content: "";
							height: 0;
							display: block;
							position: absolute;
							bottom: 0px;
							right: 0px;
							border-bottom: solid 22px #A4AEC2;
							border-left: solid 22px transparent;
							z-index: 2;
						}

					.technique-advisor {
						width: 100%;
						margin: auto auto 50px;
						display: flex;
						justify-content: center;
						align-items: center;
					}
						.technique-advisor-image {
							width: 123px;
							height: auto;
							margin-right: 10px;
							margin-left: -8px;
						}
							.technique-advisor-image img {
								width: 100%;
								height: auto;
							}

						.technique-advisor-details {
							width: auto;
							padding-top: 7px;
							text-align: left;
						}
							.advisor-name-position {
								font-size: 12px;
								font-weight: 400;
								line-height: 1.5;
							}
							.advisor-name-ja {
								margin: 8px auto 6px;
								font-size: 18px;
								font-weight: 400;
								line-height: 1.4;
							}
							.advisor-name-en {
								font-size: 10px;
								font-weight: 500;
								letter-spacing: .2em;
							}

				.technique-tsuchiya_contents {
					width: 100%;
				}
					.technique-tsuchiya_contents-details {
						width: 100%;
					}
						.technique-tsuchiya_contents-heading {
							width: 100%;
							margin-bottom: 20px;
							font-size: 16px;
							line-height: 2.0;
							letter-spacing: .3em;
						}
							.technique-tsuchiya_contents-heading small {
								font-size: 10px;
								margin-left: -3px;
								margin-right: 3px;
							}
						.technique-tsuchiya_contents-txt {
							width: 100%;
							margin-bottom: 5px;
							font-size: 14px;
							line-height: 1.8;
							text-align: justify;
							letter-spacing: .1em;
						}
						.technique-tsuchiya_contents-note {
							font-size: 10px;
							color: #7C8082;
							letter-spacing: .1em;
						}

					.technique-tsuchiya_contents-image {
						display: none;
					}

				.tsuchiya-skincare_flow {
					width: 100%;
					margin-top: 40px;
				}
					.skincare_flow-list {
						width: 100%;
					}
						.skincare_flow-item {
							width: 45%;
							max-width: 250px;
							margin: auto auto 30px;
						}
						.skincare_flow-item:last-of-type {
							margin: auto auto 0px;
						}
							.skincare_flow-image {
								width: 100%;
								margin: auto auto 20px;
								position: relative;
							}
								.skincare_flow-image img {
									width: 100%;
									height: auto;
								}
								.skincare_flow-no {
									width: 44px;
									height: 44px;
									border-radius: 50%;
									background-color: rgba(164,174,194,0.8);
									font-size: 22px;
									font-weight: 400;
									text-align: center;
									line-height: 44px;
									letter-spacing: 0;
									color: #ffffff;
									position: absolute;
									top: 8px;
									right: 2px;
								}
								.skincare_flow-spatula {
									width: 97px;
									height: auto;
									position: absolute;
									bottom: -14px;
									left: -30px;
								}
							.skincare_flow-txt {
								width: 100%;
								margin: auto auto;
								font-size: 14px;
								font-weight: 400;
								letter-spacing: .1em;
								text-align: justify;
							}

				.technique-item-dashed {
					width: 100%;
					height: 1px;
					margin-top: 45px;
					background-image : linear-gradient(to right, #000, #000 7px, transparent 7px, transparent 14px);
					background-size: 14px 7px;
					background-position: left bottom;
					background-repeat: repeat-x;
				}

				.technique-tanaka_contents {
					width: 100%;
				}
					.technique-tanaka_contents-details {
						width: 100%;
						margin: auto auto 40px;
					}
						.technique-tanaka_contents-heading {
							width: 100%;
							margin-bottom: 20px;
							font-size: 16px;
							line-height: 2.0;
							letter-spacing: .3em;
						}
							.technique-tanaka_contents-heading small {
								font-size: 10px;
								margin-left: -3px;
								margin-right: 3px;
							}
						.technique-tanaka_contents-txt {
							width: 100%;
							font-size: 14px;
							line-height: 1.8;
							text-align: justify;
							letter-spacing: .1em;
						}

					.technique-tanaka_contents-image {
						width: 60%;
						max-width: 350px;
						margin: auto auto;
					}
						.technique-tanaka_contents-image img {
							width: 100%;
							height: auto;
						}

#planning {
	width: 100%;
	color: #4D2D26;
}
	.planning--inner {
		width: 90%;
		padding: 60px 0px 80px;
		margin: auto auto;
		position: relative;
	}
		.planning-mask {
			width: 95vw;
			height: 100%;
			background-color: rgba(214, 174, 155, .68);
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
			-webkit-transform: translate(-50%,-50%);
			z-index: 5;
		}
			.planning-mask p {
				display: inline-block;
				padding: 20px 45px;
				background-color: #ffffff;
				font-size: 14px;
				letter-spacing: .2em;
				color: #4D2D26;
				font-feature-settings : "palt";
				position: absolute;
				top: 150px;
				left: 50%;
				transform: translate(-50%,-50%);
				-webkit-transform: translate(-50%,-50%);
			}
		.planning-heading-wrap {
			width: 100%;
			margin: auto auto 35px;
			position: relative;
		}
			.planning-heading-deco {
				width: 40px;
				height: auto;
				margin-left: -135px;
				position: absolute;
				top: -30px;
				left: 50%;
			}
				.planning-heading-deco img {
					width: 100%;
					height: auto;
				}
			.planning-heading-subtxt {
				width: 100%;
				margin-bottom: 18px;
				font-size: 14px;
				font-weight: 400;
				letter-spacing: .2em;
				line-height: 1.0;
				text-align: center;
			}
			.planning-heading-txt {
				width: 100%;
				font-size: 18px;
				font-weight: 400;
				line-height: 1.6;
				text-align: center;
				letter-spacing: .2em;
			}
				.planning-heading-txt span {
					width: 100%;
					font-size: 20px;
				}

			.planning-heading-mokumoku_01 {
				width: 30px;
				height: auto;
				position: absolute;
				bottom: 85px;
				left: 0px;
			}
				.planning-heading-mokumoku_01 img {
					width: 100%;
					height: auto;
				}
			.planning-heading-mokumoku_02 {
				width: 63.5px;
				height: auto;
				position: absolute;
				bottom: 86px;
				right: 0px;
			}
				.planning-heading-mokumoku_02 img {
					width: 100%;
					height: auto;
				}

		.planning-txt {
			width: 100%;
			margin: auto auto 50px;
			font-size: 14px;
			font-weight: 400;
			line-height: 2.0;
			letter-spacing: .1em;
			text-align: justify;
		}

		.planning-example {
			width: 100%;
			padding: 25px 0px 20px;
			margin: auto auto 45px;
			border-top: solid 1px #4D2D26;
			border-bottom: solid 1px #4D2D26;
			font-size: 14px;
			font-weight: 400;
			position: relative;
		}
			.example-heading {
				display: inline-block;
				padding: 0px 10px;
				background-color: #ffffff;
				letter-spacing: .1em;
				position: absolute;
				top: 0;
				left: 50%;
				transform: translate(-50%,-50%);
				-webkit-transform: translate(-50%,-50%);
			}
			.example-list {
				width: 95%;
				margin: auto auto !important;
			}
				.example-item {
					padding-left: 25px;
					margin-bottom: 5px;
					line-height: 1.8;
					letter-spacing: .1em;
					position: relative;
				}
				.example-item:last-of-type {
					margin-bottom: 0px;
				}
					.example-item:before {
						content: '★';
						margin-right: 5px;
						position: absolute;
						top: 0;
						left: 0;
					}

		.planning-contents {
			width: 100%;
			margin: auto auto 60px;
			position: relative;
		}
			.planning-contents-deco_left {
				display: none;
			}
			.planning-contents-deco_top_sp {
				width: 80px;
				height: auto;
				margin: auto auto 10px;
			}
				.planning-contents-deco_top_sp img {
					width: 100%;
					height: auto;
				}
 			.planning-contents-deco_icon {
				width: 56px;
				height: auto;
				margin: auto auto 25px;
				position: relative;
				right: -6px;
			}
				.planning-contents-deco_icon img {
					width: 100%;
					height: auto;
				}
			.planning-contents-txt {
				width: 100%;
				font-size: 16px;
				font-weight: 400;
				line-height: 1.9;
				letter-spacing: .1em;
				text-align: center;
			}
			.planning-contents-deco_right {
				display: none;
			}

		.about-roku {
			width: 60%;
			margin: auto auto 90px;
		}
			.about-roku-details {
				width: 100%;
				margin: auto auto 25px;
			}
				.about-roku-icon {
					width: 160px;
					height: auto;
					margin: auto auto 10px;
				}
					.about-roku-icon img {
						width: 100%;
						height: auto;
					}

				.about-roku-profile {
					width: 100%;
				}
					.about-roku-profile dt {
						width: 100%;
						margin: auto auto 15px;
						font-size: 20px;
						font-weight: 400;
						line-height: 1.4;
						letter-spacing: .1em;
						display: flex;
						justify-content: center;
						align-items: center;
					}
						.about-roku-profile dt i {
							margin-left: 13px;
							margin-right: 10px;
							font-size: 20px;
							position: relative;
							bottom: -1px;
						}
						.about-roku-profile dt a {
							font-size: 14px;
							letter-spacing: 0em;
							color: #4D2D26;
						}
					.about-roku-profile dd {
						width: 100%;
						font-size: 14px;
						font-weight: 400;
						line-height: 2.2;
						text-align: justify;
					}
					.about-roku-profile dd a {
						color: #DB6FA5;
						text-decoration: underline;
					}

			.about-roku-image {
				width: 100%;
			}
				.about-roku-image img {
					width: 100%;
					height: auto;
				}

		.planning-entry {
			width: 100%;
		}
			.planning-entry .section-heading-wrap {
				margin: auto auto 45px;
			}
			.entry-application_period {
				width: 100%;
				margin: auto auto 60px;
				font-size: 18px;
				line-height: 1.0;
				letter-spacing: .2em;
				display: flex;
				justify-content: center;
				align-items: center;
			}
				.entry-application_period dt {
					width: 140px;
					height: auto;
					padding: 10px 0px 11px;
					margin-right: 25px;
					border: solid 1px #4D2D26;
					text-align: center;
					text-indent: .2em;
				}

			.entry-step {
				width: 100%;
				margin: auto auto 55px;
			}
				.entry-step-list {
					width: 100%;
					display: flex;
					justify-content: space-between;
					align-items: flex-start;
				}
					.entry-step-item {
						width: 48.5%;
					}
						.entry-step-image {
							width: 100%;
							height: auto;
							margin: auto auto 15px;
						}
							.entry-step-image img {
								width: 100%;
								height: auto;
							}
						.entry-step-txt {
							width: 100%;
							font-size: 14px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .1em;
							text-align: justify;
							word-break: break-all;
						}
						.entry-step-note {
							margin-top: 3px;
							font-size: 10px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .1em;
							color: #7C8082;
						}

			.form-btn {
				display: block;
				width: 390px;
				height: 80px;
				margin: auto auto;
				background-color: #D6AE9B;
				font-size: 20px;
				font-weight: 400;
				line-height: 80px;
				text-align: center;
				letter-spacing: .2em;
				text-indent: .2em;
				color: #ffffff;
				position: relative;
			}
				.form-btn img {
					width: 36px;
					height: auto;
					margin-top: -18px;
					position: absolute;
					top: 50%;
					right: 20px;
					transition: .2s;
					-webkit-transition: .2s;
				}
}

/* SP ================================================== */
@media all and (max-width:559px){
#l-wrapper {
	overflow: hidden;
}
#main {
	width: 100%;
	height: auto;
}
	.main--inner {
		width: calc(100% - 30px);
		height: auto;
		margin: auto;
		display: flex;
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: center;
	}
		.main-left {
			width: 100%;
			height: auto;
			padding: 55px 0px 35px;
			background-color: #F3EDEB;
			display: flex;
			justify-content: center;
			align-items: center;
		}
			.main-lead {
				width: 90%;
				margin: auto auto;
				position: relative;
			}
				.main-lead-icon {
					width: 40px;
					height: auto;
					position: absolute;
					top: -26px;
					left: -3px;
				}
					.main-lead-icon img {
						width: 100%;
						height: auto;
					}
				.main-lead_heading {
					width: 100%;
					margin: auto auto 50px;
					font-size: 20px;
					line-height: 1.0;
					letter-spacing: .2em;
					text-align: center;
				}
				.main-lead_details {
					width: 100%;
					margin: auto auto;
					font-size: 14px;
					text-align: justify;
					line-height: 2.2;
					letter-spacing: .2em;
				}

		.main-right {
			width: 100%;
			height: auto;
		}
			.main-right img {
				width: 100%;
				height: auto;
			}

/* ページ内共通 */
.section-heading-wrap {
	width: 100%;
}
	.section-heading-en {
		margin: auto auto 3px;
	}
		.section-heading-en img {
			width: 100%;
			height: auto;
		}
	#how_to_use .section-heading-en {
		width: 190px;
		height: auto;
	}
	#feeling .section-heading-en {
		width: 175px;
		height: auto;
	}
	#technique .section-heading-en {
		width: 135px;
		height: auto;
	}
	#planning .section-heading-en {
		width: 92px;
		height: auto;
	}

	.section-heading {
		width: 100%;
		margin: auto auto;
		font-size: 18px;
		font-weight: 400;
		line-height: 1.55;
		letter-spacing: .3em;
		text-align: center;
		position: relative;
	}
	#how_to_use .section-heading:before {
		content: '';
		display: block;
		width: 1px;
		height: 90px;
		border-radius: .5px;
		background-color: #000000;
		position: absolute;
		top: 50%;
		left: 9%;
		transform: translate(0%,-50%) rotate(-20deg);
		-webkit-transform: translate(0%,-50%) rotate(-20deg);
	}
	#how_to_use .section-heading:after {
		content: '';
		display: block;
		width: 1px;
		height: 90px;
		border-radius: .5px;
		background-color: #000000;
		position: absolute;
		top: 50%;
		right: 9%;
		transform: translate(0%,-50%) rotate(20deg);
		-webkit-transform: translate(0%,-50%) rotate(20deg);
	}

#how_to_use {
	width: 100%;
	padding: 60px 0px 100px;
}
	.how_to_use--inner {
		width: 90%;
		margin: auto auto;
	}
		#how_to_use .section-heading-wrap {
			margin: auto auto 25px;
		}
		.how_to_use-introduction {
			width: 100%;
			height: auto;
			margin: auto auto 45px;
		}
			.how_to_use-introduction-image {
				width: 100%;
				padding: 180px 0px 5px;
				margin: auto auto 25px;
				background-color: #ffffff;
				border: solid 1px #000000;
				position: relative;
				z-index: 0;
			}
				.how_to_use-introduction-image img {
					width: 100%;
					height: auto;
				}
				.introduction-balloon-blue {
					width: 140px;
					height: auto;
					position: absolute;
					top: 37px;
					left: -10px;
				}
				.introduction-balloon-red {
					width: 160px;
					height: auto;
					position: absolute;
					top: 15px;
					right: -10px;
				}
				.introduction-illustration {
					width: 100%;
					height: auto;
					margin: auto auto;
				}

			.how_to_use-introduction-details {
				width: 100%;
				height: auto;
				padding: 6px 0px 30px;
				margin: auto auto;
				background-color: #E1D4CE;
				border: solid 1px #000000;
				position: relative;
				z-index: 1;
			}
				.light_bulb {
					width: 50px;
					height: auto;
					margin: auto auto 5px;
				}
					.light_bulb img {
						width: 100%;
						height: auto;
					}
				.introduction-details-txt {
					width: 100%;
					font-size: 14px;
					font-weight: 400;
					line-height: 2.0;
					text-align: center;
					letter-spacing: .2em;
				}

		.how_to_use-points {
			width: 100%;
			margin: auto auto;
			position: relative;
		}
			.day-item {
				position: relative;
				background-color: #ffffff;
			}
			.day-morning {
				width: 100%;
				margin-bottom: 140px;
			}
			.day-daytime {
				width: 100%;
				padding: 15px 0px;
				margin: 190px auto 125px;
			}
			.day-night {
				width: 100%;
				padding: 12px 0px 16px;
				margin: 62px auto 93px;
			}
				.time-icon {
					margin: auto auto 15px;
				}
				.day-morning .time-icon {
					width: 95px;
				}
				.day-daytime .time-icon {
					width: 95px;
				}
				.day-night .time-icon {
					width: 115px;
				}
					.time-icon img {
						width: 100%;
						height: auto;
					}
				.time-txt {
					font-size: 20px;
					font-weight: 400;
					text-align: center;
					letter-spacing: .2em;
					line-height: 1.0;
				}

				/* 点線 */
				.short-dashed {
					content: '';
					display: block;
					width: 1px;
					height: 76px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					left: 50%;
					bottom: -17px;
					transform: translate(-50%,100%);
					-webkit-transform: translate(-50%,100%);
					z-index: -1;
				}
				.long-dashed {
					width: 1px;
					height: 370px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					top: -135px;
					left: 50%;
					transform: translate(-50%,0%);
					-webkit-transform: translate(-50%,0%);
					z-index: -1;
				}
				.night-dashed {
					width: 1px;
					height: 216px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					top: -27px;
					left: 50%;
					transform: translate(-50%,0%);
					-webkit-transform: translate(-50%,0%);
					z-index: -1;
				}
				.point-item-04-dashed {
					width: 1px;
					height: 90px;
					background-image: linear-gradient(to bottom, #000, #000 5px, transparent 5px, transparent 10px);
					background-size: 5px 10px;
					background-position: left top;
					background-repeat: repeat-y;
					position: absolute;
					top: -130px;
					left: 50%;
					transform: translate(-50%,0%);
					-webkit-transform: translate(-50%,0%);
					z-index: -1;
				}

			.point-item {
				width: 100%;
				position: relative;
			}
			.point-item-01 {

			}
			.point-item-02 {

			}
			.point-item-03 {
				margin-bottom: 145px;
			}
				.point-item-wrap {
					text-align: center;
				}
					.point-item-heading {
						width: 90%;
						padding: 6px 15px;
						margin: auto auto;
						background-color: #E1D4CE;
						border: solid 1px #000000;
						position: relative;
					}
					.point-item-heading:before,
					.point-item-heading:after {
						content: '';
						display: block;
						border-radius: 50%;
						position: absolute;
						top: 0;
						left: 50%;
						transform: translate(-50%,-50%);
						-webkit-transform: translate(-50%,-50%);
					}
					.point-item-heading:before {
						width: 64px;
						height: 64px;
						background-color: #E1D4CE;
						z-index: 1;
					}
					.point-item-heading:after {
						width: 66px;
						height: 66px;
						border: solid 1px #000000;
						z-index: -1;
					}
						.point-number {
							position: absolute;
							top: 6px;
							left: 50%;
							transform: translate(-50%,-100%);
							-webkit-transform: translate(-50%,-100%);
							z-index: 2;
						}
							.point-number img {
								width: 26px;
								height: auto;
							}

						.point-item-heading-txt {
							width: 100%;
							font-size: 14px;
							font-weight: 400;
							line-height: 1.6;
							text-align: center;
							letter-spacing: .1em;
							position: relative;
							z-index: 2;
						}
					.point-item-details {
						margin: -19px auto auto;
						border: solid 1px #000000;
					}
					/* テキスト共通 */
					.point-time_txt {
						padding: 0px 0px;
						background-color: #ffffff;
						font-size: 10px;
						font-weight: 400;
						text-align: center;
						line-height: 1.4;
						letter-spacing: .2em;
						position: absolute;
						transform: translate(-50%,0%);
						-webkit-transform: translate(-50%,0%);
						z-index: 2;
					}
					.point-time_txt:before {
						content: '';
						width: 100%;
						height: calc(100% + 12px);
						position: absolute;
						top: -6px;
						left: 0;
						background-color: #ffffff;
						z-index: -1;
					}
					.point-time_txt:after {
						content: '';
						display: block;
						width: 100%;
						height: 0px;
						margin-top: 6px;
						border-bottom: solid 1px #000000;
						z-index: 1;
					}
					.point-01-time_txt {
						bottom: -72px;
						left: 50%;
					}
					.point-02-time_txt {
						top: -100px;
						left: 50%;
					}
					.point-04-time_txt {
						top: -110px;
						left: 50%;
					}

					.point-item-01 .point-item-details {
						width: 100%;
						padding: 50px 0px 15px;
					}
						.point-item-01 .point-item-details img {
							width: 95%;
							height: auto;
							margin: auto auto;
						}
						.point-note {
							width: 100%;
							margin: 5px auto auto;
							font-size: 10px;
							font-weight: 400;
							color: #7C8082;
							text-align: left;
						}
					.point-01-illust {
						display: none;
					}

					.point-item-02 .point-item-details {
						width: 100%;
						padding: 40px 0px 15px 15px;
						display: flex;
						justify-content: space-between;
						align-items: center;
					}
						.point-item-02 .point-item-details p {
							width: 50%;
							font-size: 14px;
							font-weight: 400;
							text-align: justify;
							letter-spacing: .1em;
							line-height: 1.7;
						}
						.point-item-02 .point-item-details img {
							width: 50%;
							height: auto;
						}
					.point-02-illust {
						width: 150px;
						height: auto;
						position: absolute;
						top: -380px;
						right: 0;
					}
						.point-02-illust img {
							width: 100%;
							height: auto;
						}

					.point-item-03 .point-item-details {
						padding: 42px 0px 0px;
					}
						.point-item-03 .point-item-details .balloon {
							width: 90%;
							height: auto;
							margin: auto auto 6px;
						}
							.point-item-03 .point-item-details .balloon img {
								width: 100%;
							}
						.point-item-03 .point-item-details .illust {
							width: 85%;
							height: auto;
							margin: auto auto 12px;
						}
							.point-item-03 .point-item-details .illust img {
								width: 100%;
								height: auto;
							}
						.point-item-03 .point-item-details .txt {
							width: 85%;
							margin: auto auto 10px;
							position: relative;
						}
							.point-item-03 .point-item-details .txt p {
								width: 100%;
								font-size: 14px;
								font-weight: 400;
								letter-spacing: 0.05em;
								line-height: 1.6;
								text-align: left;
							}
							.point-item-03 .point-item-details .txt img {
								width: 90px;
								height: auto;
								position: absolute;
								bottom: 1px;
								right: -12px;
							}

						.point-item-03 .point-item-details .therefore {
							width: 100%;
							padding: 20px 0px;
							position: relative;
						}
							.point-item-03 .point-item-details .therefore p {
								width: 100%;
								font-size: 16px;
								font-weight: 400;
								line-height: 1.6;
								text-align: center;
								color: #BC846A;
							}
							.point-item-03 .point-item-details .therefore .therefore-flower-left {
								width: 75px;
								position: absolute;
								bottom: 0;
								left: 0px;
							}
								.point-item-03 .point-item-details .therefore .therefore-flower-left img {
									width: 100%;
									height: auto;
								}
							.point-item-03 .point-item-details .therefore .therefore-flower-right {
								width: 75px;
								position: absolute;
								bottom: 0;
								right: -10px;
							}
								.point-item-03 .point-item-details .therefore .therefore-flower-right img {
									width: 100%;
									height: auto;
								}

					.point-item-04 .point-item-details {
						width: 100%;
						padding: 30px 0px 5px;
					}
						.point-item-04 .point-item-details p {
							width: 87%;
							margin: auto auto 10px;
							font-size: 14px;
							font-weight: 400;
							text-align: justify;
							letter-spacing: .1em;
						}
						.point-item-04 .point-item-details img {
							width: 105%;
							height: auto;
							margin-left: -15px;
						}
					.point-04-illust {
						display: none;
					}

#feeling {
	width: 100%;
	padding: 0px 0px 100px;
}
	.feeling-edge_top {
		width: 100%;
		min-width: 1400px;
		position: absolute;
		top: 1px;
		left: 50%;
		transform: translate(-50%,-100%);
		-webkit-transform: translate(-50%,-100%);
		z-index: -1;
	}
	.feeling-edge_bottom {
		width: 100%;
		min-width: 1400px;
		position: absolute;
		bottom: 1px;
		left: 50%;
		transform: translate(-50%,100%);
		-webkit-transform: translate(-50%,100%);
		z-index: -1;
	}
		.feeling-edge_top img,
		.feeling-edge_bottom img {
			width: 100%;
			height: auto;
		}
	.feeling--inner {
		width: 100%;
		padding: 30px 0px 45px;
		background-color: #F3EDEB;
		position: relative;
	}
		#feeling .section-heading-wrap {
			margin: auto auto 50px;
		}
		.feeling-list-container {
			width: 90%;
			margin: auto auto;
			position: relative;
		}
			.feeling-list {
				width: 100%;
			}
				.feeling-item {
					width: 70%;
					margin: auto auto 70px;
				}
				.feeling-item:last-of-type {
					margin: auto auto 0px;
				}
					.feeling-image {
						width: 100%;
						height: auto;
						margin: auto auto 10px;
					}
						.feeling-image img {
							width: 100%;
							height: auto;
						}
					.feeling-txt {
						width: 100%;
						font-size: 14px;
						font-weight: 400;
						line-height: 1.6;
						letter-spacing: .1em;
						text-align: justify;
					}
					.feeling-note {
						margin-top: 12px;
						font-size: 10px;
						letter-spacing: .1em;
						color: #7C8082;
					}

			.feeling-deco_01 {
				width: 175px;
				height: auto;
				position: absolute;
				top: -121px;
				right: -181px;
			}
			.feeling-deco_02 {
				width: 110px;
				height: auto;
				position: absolute;
				bottom: 5px;
				left: -164px;
			}
				.feeling-deco_01 img,
				.feeling-deco_02 img {
					width: 100%;
					height: auto;
				}

#technique {
	width: 100%;
	padding: 0px 0px 85px;
}
	.technique--inner {
		width: 90%;
		padding: 30px 0px 45px;
		margin: auto auto;
		background-color: #E7EAEF;
	}
		#technique .section-heading-wrap {
			margin: auto auto 55px;
		}
			#technique .section-heading-en {
				margin: auto auto 5px;
			}
			.technique-heading_frame {
				width: 90%;
				max-width: 850px;
				margin: auto auto;
				position: relative;
			}
				.technique-heading_frame img {
					width: 100%;
					height: auto;
				}
			#technique .section-heading {
				width: 100%;
				font-size: 18px;
				line-height: 1.45;
				position: absolute;
				top: 9px;
				left: 50%;
				transform: translate(-50%,0%);
				-webkit-transform: translate(-50%,0%);
			}
				#technique .section-heading small {
					display: inline-block;
					font-size: 14px;
					margin-bottom: 7px;
				}

		.technique-list {
			width: 90%;
			margin: auto auto !important;
		}
			.technique-item {
				width: 100%;
			}
			.technique-item:first-of-type {
				margin-bottom: 55px;
			}
				.technique-item-heading {
					width: 100%;
					text-align: center;
				}
				.tsuchiya .technique-item-heading {
					margin: auto auto 55px;
				}
				.tanaka .technique-item-heading {
					margin: auto auto 40px;
				}
					.technique-for_you {
						display: inline-block;
						width: auto;
						padding: 18px 40px;
						margin-bottom: 50px;
						background-color: #ffffff;
						position: relative;
					}
						.technique-for_you-txt {
							font-size: 16px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .2em;
							text-align: left;
						}
						.technique-for_you:before {
							content: "";
							height: 0;
							display: block;
							position: absolute;
							bottom: 0px;
							right: 0px;
							border-bottom: solid 22px #A4AEC2;
							border-left: solid 22px transparent;
							z-index: 2;
						}

					.technique-advisor {
						width: 100%;
						margin: auto auto 50px;
						display: flex;
						justify-content: center;
						align-items: center;
					}
						.technique-advisor-image {
							width: 123px;
							height: auto;
							margin-right: 10px;
							margin-left: -8px;
						}
							.technique-advisor-image img {
								width: 100%;
								height: auto;
							}

						.technique-advisor-details {
							width: auto;
							padding-top: 7px;
							text-align: left;
						}
							.advisor-name-position {
								font-size: 12px;
								font-weight: 400;
								line-height: 1.5;
							}
							.advisor-name-ja {
								margin: 8px auto 6px;
								font-size: 18px;
								font-weight: 400;
								line-height: 1.4;
							}
							.advisor-name-en {
								font-size: 10px;
								font-weight: 500;
								letter-spacing: .2em;
							}

				.technique-tsuchiya_contents {
					width: 100%;
				}
					.technique-tsuchiya_contents-details {
						width: 100%;
					}
						.technique-tsuchiya_contents-heading {
							width: 100%;
							margin-bottom: 20px;
							font-size: 16px;
							line-height: 2.0;
							letter-spacing: .3em;
						}
							.technique-tsuchiya_contents-heading small {
								font-size: 10px;
								margin-left: -3px;
								margin-right: 3px;
							}
						.technique-tsuchiya_contents-txt {
							width: 100%;
							margin-bottom: 5px;
							font-size: 14px;
							line-height: 1.8;
							text-align: justify;
							letter-spacing: .1em;
						}
						.technique-tsuchiya_contents-note {
							font-size: 10px;
							color: #7C8082;
							letter-spacing: .1em;
						}

					.technique-tsuchiya_contents-image {
						display: none;
					}

				.tsuchiya-skincare_flow {
					width: 100%;
					margin-top: 40px;
				}
					.skincare_flow-list {
						width: 100%;
					}
						.skincare_flow-item {
							width: 65%;
							margin: auto auto 30px;
						}
						.skincare_flow-item:last-of-type {
							margin: auto auto 0px;
						}
							.skincare_flow-image {
								width: 100%;
								margin: auto auto 20px;
								position: relative;
							}
								.skincare_flow-image img {
									width: 100%;
									height: auto;
								}
								.skincare_flow-no {
									width: 44px;
									height: 44px;
									border-radius: 50%;
									background-color: rgba(164,174,194,0.8);
									font-size: 22px;
									font-weight: 400;
									text-align: center;
									line-height: 44px;
									letter-spacing: 0;
									color: #ffffff;
									position: absolute;
									top: 8px;
									right: 2px;
								}
								.skincare_flow-spatula {
									width: 97px;
									height: auto;
									position: absolute;
									bottom: -14px;
									left: -30px;
								}
							.skincare_flow-txt {
								width: 100%;
								margin: auto auto;
								font-size: 14px;
								font-weight: 400;
								letter-spacing: .1em;
								text-align: justify;
							}

				.technique-item-dashed {
					width: 100%;
					height: 1px;
					margin-top: 45px;
					background-image : linear-gradient(to right, #000, #000 7px, transparent 7px, transparent 14px);
					background-size: 14px 7px;
					background-position: left bottom;
					background-repeat: repeat-x;
				}

				.technique-tanaka_contents {
					width: 100%;
				}
					.technique-tanaka_contents-details {
						width: 100%;
						margin: auto auto 40px;
					}
						.technique-tanaka_contents-heading {
							width: 100%;
							margin-bottom: 20px;
							font-size: 16px;
							line-height: 2.0;
							letter-spacing: .3em;
						}
							.technique-tanaka_contents-heading small {
								font-size: 10px;
								margin-left: -3px;
								margin-right: 3px;
							}
						.technique-tanaka_contents-txt {
							width: 100%;
							font-size: 14px;
							line-height: 1.8;
							text-align: justify;
							letter-spacing: .1em;
						}

					.technique-tanaka_contents-image {
						width: 100%;
					}
						.technique-tanaka_contents-image img {
							width: 100%;
							height: auto;
						}

#planning {
	width: 100%;
	color: #4D2D26;
}
	.planning--inner {
		width: 90%;
		padding: 35px 0px 80px;
		margin: auto auto;
		position: relative;
	}
		.planning-mask {
			width: 95vw;
			height: calc(100% + 20px);
			margin-top: -20px;
			background-color: rgba(214, 174, 155, .68);
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
			-webkit-transform: translate(-50%,-50%);
			z-index: 5;
		}
			.planning-mask p {
				display: inline-block;
				padding: 15px 30px;
				background-color: #ffffff;
				font-size: 12px;
				letter-spacing: .2em;
				color: #4D2D26;
				font-feature-settings : "palt";
				white-space: nowrap;
				position: absolute;
				top: 150px;
				left: 50%;
				transform: translate(-50%,-50%);
				-webkit-transform: translate(-50%,-50%);
			}
		.planning-heading-wrap {
			width: 100%;
			margin: auto auto 35px;
			position: relative;
		}
			.planning-heading-deco {
				width: 40px;
				height: auto;
				margin-left: -135px;
				position: absolute;
				top: -30px;
				left: 50%;
			}
				.planning-heading-deco img {
					width: 100%;
					height: auto;
				}
			.planning-heading-subtxt {
				width: 100%;
				margin-bottom: 18px;
				font-size: 14px;
				font-weight: 400;
				letter-spacing: .2em;
				line-height: 1.0;
				text-align: center;
			}
			.planning-heading-txt {
				width: 100%;
				font-size: 18px;
				font-weight: 400;
				line-height: 1.6;
				text-align: center;
				letter-spacing: .2em;
			}
				.planning-heading-txt span {
					width: 100%;
					font-size: 20px;
				}

			.planning-heading-mokumoku_01 {
				width: 30px;
				height: auto;
				position: absolute;
				bottom: 85px;
				left: 0px;
			}
				.planning-heading-mokumoku_01 img {
					width: 100%;
					height: auto;
				}
			.planning-heading-mokumoku_02 {
				width: 63.5px;
				height: auto;
				position: absolute;
				bottom: 86px;
				right: 0px;
			}
				.planning-heading-mokumoku_02 img {
					width: 100%;
					height: auto;
				}

		.planning-txt {
			width: 100%;
			margin: auto auto 50px;
			font-size: 14px;
			font-weight: 400;
			line-height: 2.0;
			letter-spacing: .1em;
			text-align: justify;
		}

		.planning-example {
			width: 100%;
			padding: 25px 0px 20px;
			margin: auto auto 45px;
			border-top: solid 1px #4D2D26;
			border-bottom: solid 1px #4D2D26;
			font-size: 14px;
			font-weight: 400;
			position: relative;
		}
			.example-heading {
				display: inline-block;
				padding: 0px 10px;
				background-color: #ffffff;
				letter-spacing: .1em;
				position: absolute;
				top: 0;
				left: 50%;
				transform: translate(-50%,-50%);
				-webkit-transform: translate(-50%,-50%);
			}
			.example-list {
				width: 95%;
				margin: auto auto !important;
			}
				.example-item {
					padding-left: 25px;
					margin-bottom: 5px;
					line-height: 1.8;
					letter-spacing: .1em;
					position: relative;
				}
				.example-item:last-of-type {
					margin-bottom: 0px;
				}
					.example-item:before {
						content: '★';
						margin-right: 5px;
						position: absolute;
						top: 0;
						left: 0;
					}

		.planning-contents {
			width: 100%;
			margin: auto auto 60px;
			position: relative;
		}
			.planning-contents-deco_left {
				display: none;
			}
			.planning-contents-deco_top_sp {
				width: 80px;
				height: auto;
				margin: auto auto 10px;
			}
				.planning-contents-deco_top_sp img {
					width: 100%;
					height: auto;
				}
 			.planning-contents-deco_icon {
				width: 56px;
				height: auto;
				margin: auto auto 25px;
				position: relative;
				right: -6px;
			}
				.planning-contents-deco_icon img {
					width: 100%;
					height: auto;
				}
			.planning-contents-txt {
				width: 100%;
				font-size: 16px;
				font-weight: 400;
				line-height: 1.9;
				letter-spacing: .1em;
				text-align: center;
			}
			.planning-contents-deco_right {
				display: none;
			}

		.about-roku {
			width: 100%;
			margin: auto auto 90px;
		}
			.about-roku-details {
				width: 100%;
				margin: auto auto 25px;
			}
				.about-roku-icon {
					width: 160px;
					height: auto;
					margin: auto auto 10px;
				}
					.about-roku-icon img {
						width: 100%;
						height: auto;
					}

				.about-roku-profile {
					width: 100%;
				}
					.about-roku-profile dt {
						width: 100%;
						margin: auto auto 15px;
						font-size: 20px;
						font-weight: 400;
						line-height: 1.4;
						letter-spacing: .1em;
						text-align: center;
					}
						.about-roku-profile dt i {
							margin-right: 15px;
							font-size: 20px;
							position: relative;
							bottom: -3px;
						}
						.about-roku-profile dt a {
							font-size: 14px;
							letter-spacing: 0em;
							color: #4D2D26;
						}
					.about-roku-profile dd {
						width: 100%;
						font-size: 14px;
						font-weight: 400;
						line-height: 2.2;
						text-align: justify;
					}
					.about-roku-profile dd a {
						color: #DB6FA5;
						text-decoration: underline;
					}

			.about-roku-image {
				width: 100%;
			}
				.about-roku-image img {
					width: 100%;
					height: auto;
				}

		.planning-entry {
			width: 100%;
		}
			.planning-entry .section-heading-wrap {
				margin: auto auto 40px;
			}
			.entry-application_period {
				width: 100%;
				margin: auto auto 35px;
				font-size: 18px;
				letter-spacing: .2em;
				text-align: center;
			}
				.entry-application_period dt {
					width: 140px;
					height: auto;
					padding: 10px 0px 11px;
					margin: auto auto 15px;
					border: solid 1px #4D2D26;
					text-align: center;
					line-height: 1.0;
					text-indent: .2em;
				}

			.entry-step {
				width: 100%;
				margin: auto auto 45px;
			}
				.entry-step-list {
					width: 100%;
				}
					.entry-step-item {
						width: 100%;
						margin: auto auto 35px;
					}
					.entry-step-item:last-of-type {
						margin: auto auto 0px;
					}
						.entry-step-image {
							width: 100%;
							height: auto;
							margin: auto auto 15px;
						}
							.entry-step-image img {
								width: 100%;
								height: auto;
							}
						.entry-step-txt {
							width: 100%;
							font-size: 14px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .1em;
							text-align: justify;
							word-break: break-all;
						}
						.entry-step-note {
							margin-top: 3px;
							font-size: 10px;
							font-weight: 400;
							line-height: 1.8;
							letter-spacing: .1em;
							color: #7C8082;
						}

			.form-btn {
				display: block;
				width: 100%;
				height: 55px;
				margin: auto auto;
				background-color: #D6AE9B;
				font-size: 16px;
				font-weight: 400;
				line-height: 55px;
				text-align: center;
				letter-spacing: .2em;
				text-indent: .2em;
				color: #ffffff;
				position: relative;
			}
				.form-btn img {
					width: 36px;
					height: auto;
					margin-top: -18px;
					position: absolute;
					top: 50%;
					right: 20px;
					transition: .2s;
					-webkit-transition: .2s;
				}
}