* {
	color: #191e28;
}

.studio-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;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 64px 0;
}
.main-area > .content > .catch {
	width: 70%;
}
.main-area > .content > .catch > .title {
	margin-bottom: 12px;
	color: #fff;
	font-size: 44px;
	line-height: 1.6;
}
.main-area > .content > .catch > .title > .inner {
	display: block;
	white-space: nowrap;
	color: #fff;
}
.main-area > .content > .catch > .subtitle {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}
.main-area > .content > .imgcontent {
	width: 50%;
	margin-left: auto;
}
.main-area > .content > .imgcontent > .img {
	width: 100%;
}
.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 {
	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: 12px;
}
.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 {
	position: relative;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 0;
}
.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 > .symbol {
	display: block;
	line-height: 0.8;
	font-size: 32px;
}
.example-area > .balloon {
	position: absolute;
	left: 72%;
	top: 56px;
	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: 0;
	border-bottom: 24px solid #e49d23;
	border-right: 24px solid transparent;
	transform: rotate(12deg);
}
.example-area > .examples > .example {
	display: flex;
	align-items: center;
	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: 40px;
}
.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 {
	max-width: 500px;
	margin-bottom: 20px;
	font-size: 28px;
	line-height: 1.6;
}
.example-area > .examples > .example > .desc > .text > .inner {
	display: block;
}
.example-area > .examples > .example > .imgcontent {
	width: auto;
	max-width: 400px;
	height: 280px;
	margin: auto;
}
.example-area > .examples > .example > .imgcontent > .img {
	width: 100%;
	height: 100%;
}

.feature-area {
	margin-top: 64px;
	padding: 64px 80px;
	background: #e9f1fc;
	border-radius: 8px;
}
.feature-area > .content {
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.feature-area > .content.-show {
	opacity: 1;
	transform: translateY(0);
}
.feature-area > .content > .heading {
	margin-bottom: 40px;
	font-size: 40px;
	text-align: center;
	line-height: 1.5;
}
.feature-area > .content > .heading > .inner {
	display: block;
	font-size: 28px;
}
.usage-example > .title {
	padding: 12px;
	background: #1c325f;
	border-radius: 4px 4px 0 0;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
.usage-example > .title > .inner {
	display: inline-block;
	color: #fff;
}
.usage-example > .usage {
	position: relative;
	display: flex;
	align-items: center;
	padding: 24px 0;
	background: #fff;
	border-radius: 0 0 4px 4px;
}
.usage-example > .usage:after {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	content: "";
	border-style: solid;
	border-width: 20px 23px 0 23px;
	border-color: #fff transparent transparent transparent;
}
.usage-example > .usage > .item {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 33%;
	min-height: 56px;
	padding: 0 16px;
}
.usage-example > .usage > .item:not(:last-child):after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	width: 1px;
	height: 56px;
	background: #cdd2d7;
}
.feature-area > .content > .subtitle {
	margin: 56px 0 32px;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}
.feature-area > .content > .subtitle > .inner {
	display: inline-block;
}
.feature-area > .content > .img {
	width: 100%;
	max-width: 600px;
	display: block;
	margin: 0 auto;
}
.feature-area > .content > .img.-sp {
	display: none;
}
.feature-area > .content > .message {
	margin-top: 32px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
.feature-area > .content > .message > .emphasis {
	background: linear-gradient(transparent 60%, #f9f871 60%);
}

.function-area {
	background: #f7fafe;
}
.function-area > .content {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 0;
}
.function-area > .content > .heading {
	margin-bottom: 50px;
	font-size: 40px;
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.function-area > .content > .heading.-show {
	opacity: 1;
	transform: translateY(0);
}
.function-area > .content > .function {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.function-area > .content > .function.-show {
	opacity: 1;
	transform: translateY(0);
}
.function-area > .content > .function > .item {
	width: calc(25% - 16px);
	padding: 40px 32px;
	background: #fff;
}
.function-area > .content > .function > .item:nth-child(n + 5) {
	margin-top: 24px;
}
.function-area > .content > .function > .item > .img {
	display: block;
	max-height: 60px;
	margin: 0 auto 24px;
}
.function-area > .content > .function > .item > .title {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin-bottom: 16px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
.function-area > .content > .btns {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.function-area > .content > .btns.-show {
	opacity: 1;
	transform: translateY(0);
}
.function-area > .content > .btns > .btn {
	width: 100%;
	max-width: 300px;
	height: 60px;
	border-radius: 40px;
	background: #0072a6;
	transition: 0.3s;
}
.function-area > .content > .btns > .btn:not(:last-child) {
	margin-right: 24px;
}
.function-area > .content > .btns > .btn > .link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 16px;
}
.function-area > .content > .btns > .btn:hover {
	border: 1px solid #0072a6;
	background: #fff;
}
.function-area > .content > .btns > .btn:hover > .link {
	color: #0072a6;
}

/*--------------------------------
contact-section
--------------------------------*/

.contact-section {
	background: #003067;
}
.contact-section > .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	max-width: 1100px;
	margin: auto;
	padding: 96px 0;
}
.contact-section > .content > .message {
	margin-bottom: 40px;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
}
.contact-section > .content > .link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 320px;
	border-radius: 30px;
	background: #f58629;
	border: 2px solid #f58629;
	transition: 0.2s;
	height: 60px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}
.contact-section > .content > .link:hover {
	background: #fff;
	color: #f58629;
}

.case-study-area {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 0;
}
.case-study-area > .heading {
	margin-bottom: 50px;
	font-size: 40px;
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.case-study-area > .heading.-show {
	opacity: 1;
	transform: translateY(0);
}
.case-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.case-list.-show {
	opacity: 1;
	transform: translateY(0);
}
.case-list > .case {
	display: flex;
	align-items: flex-start;
	width: calc(50% - 12px);
	min-height: 213px;
	padding: 32px 40px;
	border: 1px solid#D2D5DA;
	border-radius: 8px;
}
.case-list > .case:nth-child(n + 3) {
	margin-top: 24px;
}
.case-list > .case > .desc > .title {
	margin-bottom: 16px;
	font-size: 20px;
	font-weight: bold;
}
.case-list > .case > .desc > .list > .item {
	display: flex;
	align-items: center;
	line-height: 1.5;
}
.case-list > .case > .desc > .list > .item:not(:last-child) {
	margin-bottom: 4px;
}
.case-list > .case > .desc > .list > .item:before {
	content: "";
	width: 18px;
	height: 18px;
	margin-right: 8px;
	background: url("../../images/lp/use-example/studio/case/check.svg") no-repeat
		center/18px;
}
.case-list > .case > .img {
	max-height: 80px;
	margin: auto 0 auto auto;
}
.case-study-area > .btn {
	width: 100%;
	max-width: 300px;
	height: 60px;
	margin: 50px auto 0;
	border-radius: 40px;
	background: #0072a6;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.case-study-area > .btn.-show {
	opacity: 1;
	transform: translateY(0);
}
.case-study-area > .btn > .link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.case-study-area > .btn:hover {
	border: 1px solid #0072a6;
	background: #fff;
}
.case-study-area > .btn:hover > .link {
	color: #0072a6;
}

@media screen and (max-width: 1024px) {
	.studio-example-page {
		padding-top: 46px;
	}

	.problem-list {
		width: 70%;
		margin-left: 40px;
	}

	.function-area > .content > .function > .item {
		width: calc(50% - 12px);
		justify-content: space-between;
	}
	.function-area > .content > .function > .item:nth-child(n + 3) {
		margin-top: 24px;
	}
}

@media screen and (max-width: 1024px) {
	.main-area > .content > .catch > .title {
		font-size: 32px;
	}
	.main-area > .content > .catch > .subtitle {
		font-size: 18px;
	}
	.example-area > .balloon {
		right: 80px;
		top: 50px;
	}
	.example-area > .balloon:after {
		bottom: 20px;
		left: -1px;
		transform: rotate(23deg);
	}
	.example-area > .examples > .example > .imgcontent {
		max-width: 340px;
	}
}

@media screen and (max-width: 768px) {
	.main-area > .content {
		display: block;
		width: 100%;
		padding: 48px 16px;
	}
	.main-area > .content > .catch {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: 392px;
		margin: auto;
	}
	.main-area > .content > .catch > .title {
		font-size: 34px;
	}
	.main-area > .content > .catch > .title > .inner {
		font-size: 24px;
	}
	.main-area > .content > .catch > .subtitle {
		font-size: 16px;
	}
	.main-area > .content > .catch > .subsidy {
		width: 90%;
		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 {
		width: 100%;
		max-width: 360px;
		margin: 24px auto 0;
	}

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

	.example-area {
		width: 100%;
		padding: 64px 16px 56px;
	}
	.example-area > .heading {
		margin-bottom: 32px;
		font-size: 30px;
		line-height: 1.6;
	}
	.example-area > .balloon {
		position: relative;
		left: 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:not(:last-child) {
		margin-bottom: 32px;
	}
	.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 > .desc > .text > .inner {
		display: inline-block;
	}
	.example-area > .examples > .example > .imgcontent {
		order: 2;
		width: 100%;
		max-width: 300px;
		height: 100%;
		margin-top: 20px;
	}

	.feature-area {
		padding: 48px 24px;
	}
	.feature-area > .content > .heading {
		margin-bottom: 28px;
		font-size: 28px;
	}
	.feature-area > .content > .heading > .inner {
		font-size: 20px;
	}
	.feature-area > .content > .subtitle {
		margin-bottom: 20px;
		font-size: 22px;
	}
	.feature-area > .content > .img.-pc {
		display: none;
	}
	.feature-area > .content > .img.-sp {
		display: block;
		max-width: 480px;
	}
	.feature-area > .content > .message {
		margin-top: 24px;
		text-align: left;
		font-size: 16px;
	}

	.usage-example > .usage {
		display: block;
		padding: 0;
	}
	.usage-example > .title {
		font-size: 16px;
	}
	.usage-example > .usage > .item {
		width: 100%;
		min-height: auto;
		padding: 16px 24px;
	}
	.usage-example > .usage > .item:not(:last-child):after {
		content: "";
		top: auto;
		bottom: 0;
		left: 50%;
		width: calc(100% - 40px);
		height: 1px;
		transform: translateX(-50%);
	}

	.function-area > .content {
		width: 100%;
		padding: 64px 16px;
	}
	.function-area > .content > .heading {
		margin-bottom: 32px;
		font-size: 28px;
	}
	.function-area > .content > .function > .item {
		width: 100%;
		padding: 32px 24px 40px;
	}
	.function-area > .content > .function > .item:nth-child(n + 2) {
		margin-top: 16px;
	}
	.function-area > .content > .function > .item > .title {
		height: auto;
		font-size: 18px;
	}
	.function-area > .content > .function > .item > .text {
		display: flex;
		justify-content: center;
	}
	.function-area > .content > .btns {
		display: block;
	}
	.function-area > .content > .btns > .btn {
		max-width: 360px;
		margin: auto;
	}
	.function-area > .content > .btns > .btn:not(:last-child) {
		margin: 0 auto 20px;
	}

	/*--------------------------------
	contact-section
	--------------------------------*/
	.contact-section > .content {
		width: 100%;
		padding: 40px 16px;
	}
	.contact-section > .content >  .message {
		margin-bottom: 20px;
		font-size: 16px;
		text-align: center;
	}
	.contact-section > .content > .link {
		max-width: 360px;
	}

	.case-study-area {
		width: 100%;
		padding: 64px 16px;
	}
	.case-study-area > .heading {
		margin-bottom: 32px;
		font-size: 28px;
	}
	.case-list {
		display: block;
	}
	.case-list > .case {
		width: 100%;
		min-height: auto;
		padding: 24px;
	}
	.case-list > .case:nth-child(n + 1) {
		margin-top: 16px;
	}
	.case-list > .case > .desc {
		margin-right: 16px;
	}
	.case-list > .case > .desc > .title {
		margin-bottom: 12px;
		font-size: 18px;
	}
	.case-list > .case > .img {
		max-width: 60px;
	}
}
