@charset "UTF-8";



/*  ----------------------------------------------------------

kv

----------------------------------------------------------  */
.top-kv {
	position: relative;
}

.top-kv .wrap {
	color: #fff;
	position: absolute;
	z-index: 99;
	left: 18rem;
	top: 18rem;
	font-size: 1.4rem;
}

.top-kv .wrap > div:nth-of-type(1) {
	font-size: 2.6rem;
	font-weight: bold;
	margin-bottom: 4rem;
	line-height: 1.8;
}

#main {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 56rem;
}

@media screen and (max-width: 767px) {
	.top-kv .wrap {
		left: 3rem;
		top: 15rem;
		font-size: 1.2rem;
		line-height: 1.8;
	}

	.top-kv .wrap > div:nth-of-type(1) {
		font-size: 2rem;
		margin-bottom: 2rem;
		line-height: 1.6;
	}

	#main {
		height: 40rem;
	}
}



/*  ----------------------------------------------------------

about

----------------------------------------------------------  */
.top-about {
	padding: 10rem 0 0 0;
}

.top-about h2 {
	margin: 0;
}

/* intro */
.top-about-intro {
	display: flex;
	align-items: center;
}

.top-about-intro > * {
	width: 50%;
}

.top-about-intro > div {
	padding: 0 10rem 0 5rem;
}

/* problem */
.top-about-problem {
	background: var(--bg-blue);
	padding: 8rem 0 3rem 0;
	position: relative;
}

.top-about-problem::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 50vw solid #fff;
	border-top: 12rem solid transparent;
	border-right: 10rem solid transparent;
	position: absolute;
	left: 0;
	bottom: 0;
}

.top-about-problem::after {
	content: "";
	width: 0;
	height: 0;
	border-right: 50vw solid #fff;
	border-top: 12rem solid transparent;
	border-left: 10rem solid transparent;
	position: absolute;
	right: 0;
	bottom: 0;
}

.top-about-problem h3 {
	text-align: center;
}

.top-about-problem .wrap {
	display: flex;
	width: 80rem;
	margin: 0 auto;
}

.top-about-problem .wrap > figure {
	width: 58%;
	margin-left: -3%;
}

.top-about-problem .wrap > ul {
	width: 45%;
}

.top-about-problem .wrap > ul li:not(:last-child) {
	margin-bottom: 1rem;
}

.top-about-problem .wrap > ul li {
	background: #fff;
	border-radius: 10rem;
	position: relative;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	padding: 0 0 0 4rem;
	height: 6rem;
}

.top-about-problem .wrap > ul li::before {
	content: "";
	width: 3.5rem;
	height: 3.5rem;
	background: url(../img/ico-1.png) no-repeat;
	background-size: 3.5rem;
	position: absolute;
	left: -0.5rem;
	top: -0.5rem;
}

/* solution */
.top-about-solution {
	padding: 5rem 0 3rem 0;
	position: relative;
}

.top-about-solution::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 50vw solid #eef1f4;
	border-top: 12rem solid transparent;
	border-right: 10rem solid transparent;
	position: absolute;
	left: 0;
	bottom: 0;
}

.top-about-solution::after {
	content: "";
	width: 0;
	height: 0;
	border-right: 50vw solid #eef1f4;
	border-top: 12rem solid transparent;
	border-left: 10rem solid transparent;
	position: absolute;
	right: 0;
	bottom: 0;
}

.top-about-solution h3 {
	text-align: center;
}

.top-about-solution .wrap {
	width: 80rem;
	margin: 0 auto;
	display: flex;
	flex-direction: row-reverse;
}

.top-about-solution .wrap > figure {
	width: 50%;
}

.top-about-solution .wrap > ul {
	width: 50%;
}

.top-about-solution .wrap > ul li:not(:last-child) {
	margin-bottom: 1rem;
}

.top-about-solution .wrap > ul li {
	background: #fff;
	border-radius: 10rem;
	position: relative;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	padding: 0 0 0 4rem;
	height: 6rem;
	color: var(--blue);
	border: solid 0.2rem var(--blue);
	font-weight: bold;
}

.top-about-solution .wrap > ul li::before {
	content: "";
	width: 3.5rem;
	height: 3.5rem;
	background: url(../img/ico-2.png) no-repeat;
	background-size: 3.5rem;
	position: absolute;
	left: -0.5rem;
	top: -0.5rem;
}

.top-about-solution p {
	margin: 0;
	text-align: center;
	margin: 2rem 0 4rem;
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.top-about {
		padding: 8rem 0 0 0;
	}

	.top-about h2 {
		margin: 0 0 6rem 0;
	}

	/* intro */
	.top-about-intro {
		flex-direction: column-reverse;
	}

	.top-about-intro > * {
		width: 100%;
	}

	.top-about-intro > div {
		padding: 0 3rem 2rem 3rem;
	}

	/* problem */
	.top-about-problem {
		background: var(--bg-blue);
		padding: 6rem 3rem 3rem 3rem;
		position: relative;
	}

	.top-about-problem::before {
		border-top: 6rem solid transparent;
	}

	.top-about-problem::after {
		border-top: 6rem solid transparent;
	}

	.top-about-problem .wrap {
		display: block;
		width: 100%;
	}

	.top-about-problem .wrap > figure {
		width: 100%;
		margin-left: 0;
	}

	.top-about-problem .wrap > ul {
		width: 100%;
		margin-bottom: 2rem;
	}

	.top-about-problem .wrap > ul li {
		height: 6.8rem;
	}

	/* solution */
	.top-about-solution {
		padding: 4rem 3rem 3rem 3rem;
	}

	.top-about-solution::before {
		border-top: 6rem solid transparent;
	}

	.top-about-solution::after {
		border-top: 6rem solid transparent;
	}

	.top-about-solution h3 {
		text-align: center;
	}

	.top-about-solution .wrap {
		width: 100%;
		display: block;
	}

	.top-about-solution .wrap > figure {
		width: 100%;
	}

	.top-about-solution .wrap > ul {
		width: 100%;
		margin-bottom: 2rem;
	}

	.top-about-solution .wrap > ul li {
		height: 6.8rem;
	}
}



/*  ----------------------------------------------------------

service

----------------------------------------------------------  */
.top-service {
	background: url(../img/top-bg-1.jpg) no-repeat center top / cover;
	padding: 8rem 0;
}

.top-service .wrap {
	width: 80rem;
	margin: 0 auto;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.top-service .wrap > figure {
	width: 40%;
}

.top-service .wrap > div {
	width: 60%;
}

@media screen and (max-width: 767px) {
	.top-service {
		padding: 8rem 3rem;
	}

	.top-service .wrap {
		width: 100%;
		display: block;
	}

	.top-service .wrap > figure {
		width: 100%;
		margin-bottom: 3rem;
	}

	.top-service .wrap > div {
		width: 100%;
	}
}



/*  ----------------------------------------------------------

success

----------------------------------------------------------  */
.top-success {
	padding: 8rem 0;
}

.top-success .wrap {
	width: 80rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.top-success .wrap > figure {
	width: 40%;
}

.top-success .wrap > div {
	width: 60%;
	display: flex;
	justify-content: center;
}

.top-success h3 {
	letter-spacing: 0.3em;
}

.top-success h3 + div {
	margin: 2.5rem 0 3rem 0;
	color: var(--blue);
	letter-spacing: 0.2em;
	font-weight: bold;
	border-top: solid 0.15rem var(--blue);
	border-bottom: solid 0.15rem var(--blue);
	padding: 1.5rem 0 1.7rem 0;
	font-size: 2rem;
	text-align: center;
}

.top-success .more {
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.top-success {
		padding: 8rem 3rem;
	}

	.top-success .wrap {
		width: 100%;
		display: block;
	}

	.top-success .wrap > figure {
		width: 100%;
		margin-bottom: 3rem;
	}

	.top-success .wrap > div {
		width: 100%;
		display: block;
	}

	.top-success h3 {
		text-align: center;
		letter-spacing: 0;
	}
}



/*  ----------------------------------------------------------

company

----------------------------------------------------------  */
.top-company {
	padding: 10rem 0;
	background: url(../img/top-bg-2.jpg) no-repeat center / cover;
	color: #fff;
}

.top-company h2 {
	color: #fff;
}

.top-company h3 {
	color: #fff;
}

.top-company .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-company .wrap > figure {
	width: 18rem;
	margin-right: 10rem;
}

@media screen and (max-width: 767px) {
	.top-company {
		padding: 8rem 3rem;
	}

	.top-company h2 {
		margin-bottom: 8rem;
	}

	.top-company h3 {
		text-align: center;
	}

	.top-company .wrap {
		display: block;
	}

	.top-company .wrap > figure {
		width: 14rem;
		margin: 0 auto 3rem auto;
	}
}



/*  ----------------------------------------------------------

contact

----------------------------------------------------------  */
.top-contact {
	padding: 10rem 0;
	background:
		url(../img/deco-1.png) no-repeat right top 1rem,
		url(../img/deco-2.png) no-repeat left bottom 15rem;
	background-size:
		32rem auto,
		24rem auto;
}

.contact-line {
	border: solid 0.5rem #eaeaea;
	border-radius: 1rem;
	background: url(../img/top-bg-3.jpg) no-repeat center / cover;
	display: flex;
	padding: 3rem 8rem 0 8rem;
	align-items: center;
	width: 80rem;
	margin: 0 auto;
}

.contact-line > * {
	width: 50%;
}

.contact-line > figure {
	padding: 0 3rem 0 0;
}

.contact-line > div {
	padding-bottom: 2rem;
}

.contact-line a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.6rem;
	background: #06c755;
	border-radius: 10rem;
	width: 28rem;
	margin: 0 auto;
	height: 5.6rem;
	padding-bottom: 0.2rem;
}

.contact-line a img {
	width: 4rem;
	height: 4rem;
	margin-right: 1rem;
}

.contact-line h3 {
	font-size: 2.4rem;
	letter-spacing: 0.2em;
}

.contact-line h3 strong {
	color: #06c755;
}

.contact-line p {
	margin: 1.5rem 0 2.5rem 0;
}

.contact form {
	width: 80rem;
	margin: 6rem auto 0 auto;
}

@media screen and (max-width: 767px) {
	.top-contact {
		padding: 8rem 3rem;
		background:
			url(../img/deco-1.png) no-repeat right top 1rem,
			url(../img/deco-2.png) no-repeat left bottom 5rem;
		background-size:
			24rem auto,
			14rem auto;
	}

	.contact-line {
		display: block;
		padding: 4rem 3rem;
		width: 100%;
		margin-bottom: 30px;
	}

	.contact-line > * {
		width: 100%;
	}

	.contact-line > figure {
		padding: 0 3rem;
		margin-bottom: 2rem;
	}

	.contact-line > div {
		padding-bottom: 0;
	}

	.contact-line a {
		width: 100%;
	}

	.contact-line h3 {
		text-align: center;
		font-size: 2.2rem;
	}

	.contact-line p {
		margin: 1.5rem 0 2rem 0;
	}

	.contact form {
		width: 100%;
		margin: 0 auto;
	}
}



/*  ----------------------------------------------------------

form

----------------------------------------------------------  */
.CMS-FORM-GROUP {
	display: block;
	margin-bottom: 5rem;
}

.CMS-FORM-GROUP label {
	width: 100%;
	margin-bottom: 1.5rem;
	display: block;
	font-size: 1.4rem;
}

.CMS-FORM-GROUP input,
.CMS-FORM-GROUP textarea {
	width: 100%;
	padding: 2rem;
	border: #ddd solid 1px;
	box-sizing: border-box;
	background: #f9f9f9;
	box-shadow: inset 0 0 0.5rem rgba(0, 0, 0, 0.08);
	border-radius: 0.5rem;
}

.CMS-FORM-INPUT,
.CMS-FORM-EMAIL {
	-webkit-appearance: none;
	appearance: none;
}

.CMS-FORM-GROUP textarea {
	height: 16rem;
	-webkit-appearance: none;
	appearance: none;
}

.CMS-FORM-GROUP input[type="submit"] {
	border: none;
	color: #fff;
	display: block;
	font-weight: bold;
	font-size: 1.4rem;
	width: 36rem;
	padding: 2rem 0;
	margin: 0 auto;
	transition: all .3s;
	display: block;
	box-shadow: none;
	background-image: -moz-linear-gradient(0deg, rgb(29, 32, 130) 0%, rgb(11, 162, 155) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(29, 32, 130) 0%, rgb(11, 162, 155) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(29, 32, 130) 0%, rgb(11, 162, 155) 100%);
	border-radius: 10rem;
	font-size: 2rem;
}

.CMS-FORM-GROUP input[type="submit"]:hover {
	cursor: pointer;
	opacity: 0.5;
}

.CMS-FORM-RADIO input[type="radio"] {
	width: 2rem;
	height: 2rem;
	display: block;
	margin-top: 0.9rem;
	border-radius: 50%;
}

.CMS-FORM-RADIO {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 70%;
}

.CMS-FORM-RADIO label {
	display: block;
	width: calc(100% - 3.5rem);
}

.CMS-FORM-RADIO > label {
	font-weight: normal;
	padding-top: 0.8rem;
}

.CMS-FORM-RADIO > label:not(:last-of-type) {
	margin-bottom: 1rem;
}

input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-appearance: button;
	appearance: button;
	border: none;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

@media screen and (max-width: 767px) {
	.CMS-FORM-GROUP {
		display: block;
	}

	.CMS-FORM-GROUP label {
		width: 100%;
		display: block;
		margin-bottom: 1rem;
	}

	.CMS-FORM-GROUP input,
	.CMS-FORM-GROUP textarea {
		width: 100%;
	}

	.CMS-FORM-RADIO input[type="radio"] {
		width: 2rem;
		height: 2rem;
		margin-top: 0;
		margin-bottom: 1.5rem;
	}

	.CMS-FORM-RADIO {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
	}

	.CMS-FORM-RADIO label {
		width: calc(100% - 3.5rem);
		padding-top: 0;
		margin-top: -0.1rem;
	}

	.CMS-FORM-RADIO > label {
		font-weight: normal;
	}

	.CMS-FORM-RADIO > label:not(:last-of-type) {
		margin-bottom: 0;
	}

	.CMS-FORM-GROUP input[type="submit"] {
		width: 100%;
		padding: 2rem 0;
		font-size: 1.8rem;
	}
}

.his {
	background: #0ba29b;
	line-height: 1;
	color: #fff;
	font-size: 1rem;
	padding: 0.2rem 1rem 0.3rem 1rem;
	margin-left: 1.6rem;
	vertical-align: 0.1rem;
	font-weight: bold;
}

.nini {
	background: #7e7a7c;
	line-height: 1;
	color: #fff;
	font-size: 1rem;
	padding: 0.2rem 1rem 0.3rem 1rem;
	margin-left: 1.6rem;
	vertical-align: 0.1rem;
	font-weight: bold;
}

.thanx {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.thanx {
		text-align: left;
	}
}

.h3.heading-2.fade.fadeInUp {
	font-size: 18px;
}
