* {
	color: #191e28;
}

.salon-example-page {
	padding-top: 144px;
}
.main-area {
	background: linear-gradient(
		135deg,
		rgba(72, 169, 254, 1) 0%,
		rgba(41, 230, 239, 1) 100%
	);
}
.main-area > .content {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 1100px;
	width: 90%;
	margin: 0 auto;
	padding: 56px 0;
}
.main-area > .content > .imgcontent {
	width: 50%;
}
.main-area > .content > .imgcontent > .img {
	width: 100%;
}
.main-area > .content > .catch {
	width: 60%;
}
.main-area > .content > .catch > .title {
	margin-bottom: 12px;
	font-size: 44px;
	color: #fff;
	line-height: 1.6;
}
.main-area > .content > .catch > .title > .inner {
	display: inline-block;
	color: #fff;
}
.main-area > .content > .catch > .subtitle {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}
.main-area > .content > .catch > .subtitle > .inner {
	color: #fff;
}
.main-area > .content > .catch > .btn {
	display: block;
	width: 100%;
	max-width: 360px;
	margin-top: 32px;
	border-radius: 30px;
	background: #f58629;
	border: 2px solid #f58629;
	transition: 0.2s;
}
.main-area > .content > .catch > .btn > .link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}
.main-area > .content > .catch > .btn:hover {
	background: #fff;
}
.main-area > .content > .catch > .btn:hover > .link {
	color: #f58629;
}
.main-area > .content > .catch > .subsidy {
	display: block;
	text-align: center;
	margin-top: 20px;
	padding: 5px 0;
	width: 100%;
	background-color: #20325C;
	color: #fff;
	text-decoration: underline;
	font-size: 20px;
	font-weight: 700;
}
.main-area > .content > .catch > .subsidy > .highlight {
	color: #fdff16;
}
.main-area > .content > .catch > .subsidy > .sp {
	display: none;
}

/* problem-area */
.problem-area {
	position: relative;
	background: #e7f3f9;
}
.problem-area:after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	content: "";
	border-style: solid;
	border-width: 20px 23px 0 23px;
	border-color: #e7f3f9 transparent transparent transparent;
}
.problem-area > .content {
	max-width: 1100px;
	width: 90%;
	margin: 0 auto;
	padding: 80px 0;
}

.problem-area > .content > .heading {
	margin-bottom: 50px;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.problem-area > .content > .heading.-show {
	opacity: 1;
	transform: translateY(0);
}
.problem-area > .content > .heading > .inner {
	display: inline-block;
}
.problem-area > .content > .problems {
	display: flex;
	align-items: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.problem-area > .content > .problems.-show {
	opacity: 1;
	transform: translateY(0);
}
.problem-area > .content > .problems > .imgcontent {
	max-width: 400px;
}
.problem-area > .content > .problems > .imgcontent > .img {
	width: 100%;
}
.problem-list {
	width: 50%;
	margin-left: auto;
}
.problem-list > .item {
	position: relative;
	display: flex;
	align-items: center;
	padding: 16px 32px 16px 48px;
	background: #fff;
	border-radius: 4px;
}
.problem-list > .item:first-child {
	min-height: 82px;
}
.problem-list > .item:not(:last-child) {
	margin-bottom: 16px;
}
.problem-list > .item > .label {
	position: absolute;
	top: 50%;
	left: -24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #1c325f;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	font-size: 13px;
}
.problem-list > .item > .label > .num {
	color: #fff;
	font-size: 14px;
	font-family: "Avenir";
	font-weight: bold;
}
.problem-list > .item > .text > .inner {
	display: inline-block;
}

/* example-area */
.example-area {
	position: relative;
	max-width: 1100px;
	width: 90%;
	margin: 0 auto;
	padding: 80px 0;
}
.example-area > .balloon {
	position: absolute;
	right: 40px;
	top: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 116px;
	height: 116px;
	border-radius: 50%;
	background: #e49d23;
	color: #fff;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.example-area > .balloon.-show {
	opacity: 1;
	transform: translateY(0);
}
.example-area > .balloon:after {
	content: "";
	position: absolute;
	bottom: 16px;
	left: 0px;
	border-bottom: 24px solid #e49d23;
	border-right: 24px solid transparent;
	transform: rotate(12deg);
}
.example-area > .heading {
	margin-bottom: 50px;
	font-size: 40px;
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.example-area > .heading.-show {
	opacity: 1;
	transform: translateY(0);
}
.example-area > .heading > .sub {
	display: block;
	font-size: 28px;
}
.example-area > .examples > .example {
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.example-area > .examples > .example.-show {
	opacity: 1;
	transform: translateY(0);
}
.example-area > .examples > .example:not(:last-child) {
	margin-bottom: 32px;
}
.example-area > .examples > .example > .desc {
	width: 50%;
}
.example-area > .examples > .example:nth-child(odd) > .desc {
	margin-right: 40px;
}
.example-area > .examples > .example:nth-child(even) > .desc {
	margin-left: 40px;
}
.example-area > .examples > .example > .desc > .label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 5px 12px;
	border: 1px solid #0050a0;
	border-radius: 2px;
	color: #0050a0;
	font-weight: bold;
}
.example-area > .examples > .example > .desc > .title {
	margin-bottom: 20px;
	font-size: 28px;
}
.example-area > .examples > .example > .imgcontent {
	width: auto;
	max-width: 400px;
	height: 280px;
	margin: auto;
}
.example-area > .examples > .example > .imgcontent > .img {
	width: 100%;
	height: 100%;
}
.example-area > .btn {
	max-width: 360px;
	height: 60px;
	margin: 40px auto 0;
	border-radius: 40px;
	background: #0072a6;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.example-area > .btn.-show {
	opacity: 1;
	transform: translateY(0);
}
.example-area > .btn > .link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.example-area > .btn:hover {
	border: 1px solid #0072a6;
	background: #fff;
}
.example-area > .btn:hover > .link {
	color: #0072a6;
}

/* operation-feature */
.operation-feature {
	margin-top: 56px;
	padding: 56px;
	background: #e9f1fc;
	border-radius: 8px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.operation-feature.-show {
	opacity: 1;
	transform: translateY(0);
}
.operation-feature > .title {
	margin-bottom: 24px;
	font-size: 28px;
	text-align: center;
	font-weight: bold;
}
.operation-feature > .title > .inner {
	display: inline-block;
}
.operation-feature > .text {
	margin-bottom: 24px;
	text-align: center;
}
.operation-feature > .feature {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.operation-feature > .feature > .item {
	display: flex;
	align-items: center;
	width: calc(50% - 12px);
	padding: 24px 32px;
	background: #fff;
	border-radius: 8px;
}
.operation-feature > .feature > .item > .text {
	font-weight: bold;
}
.operation-feature > .feature > .item > .text > .inner {
	display: block;
}
.operation-feature > .feature > .item > .img {
	max-height: 140px;
	margin-left: auto;
}

@media screen and (max-width: 1024px) {
	.main-area > .content {
		padding: 64px 0;
	}
	.main-area > .content > .catch > .title {
		white-space: nowrap;
		font-size: 40px;
	}
	.main-area > .content > .catch > .title > .inner {
		display: block;
	}
	.main-area > .content > .imgcontent {
		position: relative;
		transform: translateY(0);
		width: 100%;
		max-width: 480px;
		margin-left: 0;
	}

	.salon-example-page {
		padding-top: 46px;
	}
	.problem-list {
		width: 70%;
		margin-left: 40px;
	}

	.example-area > .balloon {
		top: 24px;
	}
	.example-area > .balloon:after {
		bottom: 16px;
		left: 0;
		transform: rotate(12deg);
	}
	.example-area > .examples > .example > .desc > .title {
		font-size: 28px;
		line-height: 1.6;
	}

	.operation-feature {
		padding: 40px;
	}
	.operation-feature > .feature > .item {
		display: block;
		text-align: center;
	}
	.operation-feature > .feature > .item > .img {
		margin-top: 20px;
	}
}

@media screen and (max-width: 768px) {
	.main-area > .content {
		width: 100%;
		padding: 48px 16px;
	}
	.main-area > .content > .catch {
		width: 100%;
		max-width: 360px;
	}
	.main-area > .content > .catch > .title {
		font-size: 40px;
		white-space: pre-wrap;
	}
	.main-area > .content > .catch > .title > .inner {
		display: inline-block;
	}
	.main-area > .content {
		flex-direction: column;
		justify-content: center;
	}
	.main-area > .content > .catch > .title {
		font-size: 34px;
	}
	.main-area > .content > .catch > .subtitle {
		font-size: 16px;
	}
	.main-area > .content > .catch > .subsidy {
		padding: 0;
		font-size: 14px;
	}
	.main-area > .content > .catch > .subsidy > .highlight {
		color: #fdff16;
	}
	.main-area > .content > .catch > .subsidy > .sp {
		display: block;
	}
	.main-area > .content > .imgcontent {
		position: relative;
		max-width: 360px;
		margin: 32px auto 0;
		height: 100%;
	}
	.main-area > .content > .catch > .btn {
		margin: 32px auto 0;
	}

	/* problem-area */
	.problem-area > .content {
		width: 100%;
		padding: 64px 16px;
	}
	.problem-area > .content > .heading {
		margin-bottom: 32px;
		font-size: 28px;
		line-height: 1.6;
	}
	.problem-area > .content > .problems {
		display: block;
	}
	.problem-area > .content > .problems > .imgcontent {
		max-width: 280px;
		margin: 0 auto 32px;
	}
	.problem-list {
		width: 100%;
		margin: 0;
	}
	.problem-list > .item {
		margin-left: 32px;
		padding: 24px 24px 24px 40px;
	}
	.problem-list > .item > .label {
		left: -32px;
	}

	/* example-area */
	.example-area {
		width: 100%;
		padding: 64px 16px;
	}
	.example-area > .heading {
		margin-bottom: 32px;
		font-size: 28px;
		line-height: 1.6;
	}
	.example-area > .heading > .sub {
		font-size: 18px;
	}
	.example-area > .heading > .symbol {
		display: block;
		line-height: 0.7;
		font-size: 24px;
	}
	.example-area > .balloon {
		position: relative;
		right: 0;
		top: 0;
		width: 160px;
		height: auto;
		margin: 0 auto 16px;
		padding: 8px 0;
		border-radius: 30px;
	}
	.example-area > .balloon:after {
		left: 50%;
		bottom: -8px;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 12px 0 12px;
		border-color: #e49d23 transparent transparent transparent;
	}
	.example-area > .examples > .example {
		max-width: 383px;
		margin: auto;
		flex-direction: column;
	}
	.example-area > .examples > .example > .desc {
		width: 100%;
		margin: 0 !important;
	}
	.example-area > .examples > .example > .desc > .title {
		margin-bottom: 12px;
		font-size: 22px;
	}
	.example-area > .examples > .example > .imgcontent {
		order: 2;
		width: 100%;
		max-width: 280px;
		height: 100%;
		margin-top: 16px;
	}
	.example-area > .btn {
		margin-top: 32px;
	}

	/* operation-feature */
	.operation-feature {
		width: 100%;
		padding: 32px 24px;
	}
	.operation-feature > .title {
		margin-bottom: 16px;
		font-size: 22px;
		line-height: 1.6;
	}
	.operation-feature > .feature {
		display: block;
	}
	.operation-feature > .feature > .item {
		display: flex;
		width: 100%;
		padding: 24px;
		text-align: left;
	}
	.operation-feature > .feature > .item:not(:last-child) {
		margin-bottom: 16px;
	}
	.operation-feature > .feature > .item > .text > .inner {
		display: inline-block;
		word-break: break-all;
	}
	.operation-feature > .feature > .item > .img {
		max-height: 75px;
		margin: 0 0 0 auto;
	}
}
