@charset "UTF-8";

/*===============*/
/* main */
/*===============*/
main {
	padding-bottom: 150px;
}

@media (max-width:768px) {
	main {
		padding-bottom: 0;
	}
}

/*===============*/
/* message */
/*===============*/
.message {
	position: relative;
}

.message>div::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100px;
	min-width: 1200px;
	width: 100vw;
	background-color: #F4F8FA;
	content: "";
}

.message>div {
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 auto;
	padding: 100px 0;
	max-width: 980px;
}

.message .txt {
	position: relative;
	width: calc(50% - 35px);
}

.message .txt h2 {
	margin-bottom: 25px;
}

.message .txt h2 span {
	font-size: 240%;
}

.message .txt p {
	white-space: nowrap;
}

.message .img {
	width: calc(50% - 35px);
}

.message .img img {
	position: relative;
	left: 100%;
	width: 647px;
	transform: translateX(-100%);
}

@media (max-width:768px) {
	.message>div::before {
		display: none;
	}

	.message>div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding: 0 0 4em;
	}

	.message .txt {
		margin: 4em auto 0;
		width: 90%;
	}

	.message .txt h2 {
		margin-bottom: 2em;
		text-align: center;
	}

	.message .txt h2 span {
		font-size: 180%;
	}

	.message .txt p {
		white-space: normal;
	}

	.message .img {
		width: 100%;
	}

	.message .img img {
		position: relative;
		left: auto;
		width: 100%;
		transform: translateX(0);
	}
}

/*===============*/
/* index */
/*===============*/
.index h2 {
	margin-bottom: 30px;
}

.index h2 small,
.index h2 span {
	display: block;
	text-align: center;
}

.index h2 small {
	display: block;
	margin-bottom: 20px;
	padding-left: .05em;
	color: #67B6DD;
	letter-spacing: .05em;
	font-size: 160%;
	font-family: 'Saira Extra Condensed', sans-serif;
}

.index h2 span {
	padding-left: .05em;
	letter-spacing: .05em;
	font-size: 240%;
}

.index h3 {
	margin-bottom: 25px;
}

.index h3 span {
	display: block;
	text-align: center;
	font-size: 140%;
	line-height: 1.8;
}

.index p {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Verdana, Meiryo, "M+ 1p", sans-serif;
}

@media (max-width:768px) {
	.index h2 {
		margin-bottom: 2em;
	}

	.index h2 small {
		margin-bottom: 1em;
		font-size: 120%;
	}

	.index h2 span {
		font-size: 160%;
	}

	.index h3 {
		margin-bottom: 2em;
	}

	.index h3 span {
		font-size: 110%;
	}
}

/*===============*/
/* link_bt */
/*===============*/
.link_bt {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 50px auto 0;
	width: 280px;
	height: 60px;
	border-radius: 30px;
	background: -moz-linear-gradient(left, #67B6DD, #60E3BB);
	background: -webkit-linear-gradient(left, #67B6DD, #60E3BB);
	background: linear-gradient(to right, #67B6DD, #60E3BB);
}

div.link_bt {
	background: -moz-linear-gradient(left, #CCC, #EEE);
	background: -webkit-linear-gradient(left, #CCC, #EEE);
	background: linear-gradient(to right, #CCC, #EEE);
}

div.link_bt img {
	display: none;
}

body.dv_pc .link_bt::before {
	position: absolute;
	top: -1px;
	bottom: -1px;
	width: 0;
	background: -moz-linear-gradient(left, rgba(103, 182, 221, 1) 50%, rgba(103, 182, 221, 0) 80%);
	background: -webkit-linear-gradient(left, rgba(103, 182, 221, 1) 50%, rgba(103, 182, 221, 0) 80%);
	background: linear-gradient(to right, rgba(103, 182, 221, 1) 50%, rgba(103, 182, 221, 0) 80%);
	content: "";
	transition: width .3s 0s ease-out;
}

body.dv_pc .link_bt:hover::before {
	width: 200%;
	transition: width .3s .2s ease-in;
}

.link_bt span {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #FFF;
	white-space: nowrap;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Verdana, Meiryo, "M+ 1p", sans-serif;
	transform: translate(-50%, -50%);
}

a.link_bt span::before {
	content: "詳しく見る";
	white-space: normal;
}

div.link_bt span {
	letter-spacing: .1em;
}

div.link_bt span::before {
	content: "COMING SOON";
}

.link_bt img {
	position: absolute;
	top: 50%;
	right: 20px;
	width: auto;
	height: auto;
	transform: translateY(-50%);
}

@media (max-width:768px) {
	.link_bt {
		margin: 2em auto 0;
		width: 17em;
		height: 3.6em;
		border-radius: 2em;
	}

	.link_bt img {
		right: 1.25em;
		max-width: 27px;
		width: 2.5em;
	}
}

/*===============*/
/* our_vision */
/*===============*/
.our_vision {
	position: relative;
	background-color: #D5E8EE;
}

.our_vision .txt {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	width: 90%;
	text-align: center;
	transform: translate(-50%, -50%);
}

.our_vision .txt p {
	text-align: center;
}

.our_vision .img {
	position: relative;
	left: 50%;
	overflow: hidden;
	max-width: 1366px;
	transform: translateX(-50%);
}

.our_vision .img img {
	display: block;
}

.our_vision .img::before,
.our_vision .img::after {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 10;
	width: 10%;
	content: "";
	opacity: 0;
	transition: opacity .2s;
}

.our_vision .img::before {
	left: -1px;
	background: -moz-linear-gradient(left, rgba(213, 232, 238, 1), rgba(213, 232, 238, 0));
	background: -webkit-linear-gradient(left, rgba(213, 232, 238, 1), rgba(213, 232, 238, 0));
	background: linear-gradient(to right, rgba(213, 232, 238, 1), rgba(213, 232, 238, 0));
}

.our_vision .img::after {
	right: -1px;
	background: -moz-linear-gradient(right, rgba(213, 232, 238, 1), rgba(213, 232, 238, 0));
	background: -webkit-linear-gradient(right, rgba(213, 232, 238, 1), rgba(213, 232, 238, 0));
	background: linear-gradient(to left, rgba(213, 232, 238, 1), rgba(213, 232, 238, 0));
}

@media (min-width:1366px) {

	.our_vision .img::before,
	.our_vision .img::after {
		opacity: 1;
	}
}

@media (max-width:768px) {
	.our_vision .txt {
		position: relative;
		top: auto;
		left: auto;
		margin: 0 auto;
		padding: 4em 0;
		transform: translate(0);
	}

	.our_vision h2 span {
		position: relative;
		margin: 0 auto;
		width: 12em;
	}

	.our_vision h2 span i {
		position: absolute;
		top: 0;
		left: 0;
	}

	.our_vision h2 span i:last-child {
		top: auto;
		right: 0;
		bottom: 0;
		left: auto;
	}

	.our_vision .img {
		left: 0;
		max-width: none;
		transform: translateX(0);
	}

	.our_vision .img img {
		position: relative;
		margin: -1em 0 -2em;
		width: auto;
		height: 24em;
	}
}

/*===============*/
/* company */
/*===============*/
.company {
	position: relative;
}

.company>div {
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 auto;
	padding: 100px 0;
	width: 980px;
}

.company>div::before {
	position: absolute;
	top: 0;
	right: calc(50% - 200px);
	bottom: 0;
	min-width: 1366px;
	width: 100vw;
	background-color: #F4F8FA;
	content: "";
}

.company .txt {
	position: relative;
	width: calc(50% - 35px);
}

.company .txt h3 span {
	text-align: left;
}

.company .img {
	width: 50%;
}

.company .img img {
	position: relative;
	left: 98px;
	width: 585px;
}

@media (max-width:768px) {
	.company {
		background-color: #F4F8FA;
	}

	.company>div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 4em 0 0;
		width: 100%;
	}

	.company>div::before {
		display: none;
	}

	.company .txt {
		margin: 0 auto 4em;
		width: 90%;
	}

	.company .txt h3 span {
		text-align: center;
	}

	.company .img {
		overflow: hidden;
		width: 100%;
	}

	.company .img img {
		left: auto;
		margin: -2.5em 0;
		width: 100%;
	}
}

/*===============*/
/* works */
/*===============*/
.works {
	position: relative;
	background: url(../img/top/works-image.jpg) right bottom no-repeat;
}

.works>div {
	position: relative;
	margin: 0 auto;
	padding: 100px 0;
	width: 980px;
}

.works .txt {
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.works .txt>div {
	position: relative;
	padding: 40px 40px 14em;
	width: calc(50% - 20px);
	background-color: rgba(244, 248, 250, .8);
	text-align: center;
}

.works .txt>div h4 {
	display: inline-block;
	margin-bottom: 30px;
	border-bottom: 4px solid #67B6DD;
}

.works .txt>div h4 span {
	display: block;
	margin-bottom: 10px;
	padding-left: .5em;
	letter-spacing: .5em;
	font-size: 150%;
	line-height: 1.2;
}

.works .txt>div p {
	margin: 0 auto;
	max-width: 350px;
}

.works .txt>div ul {
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
	display: block;
	padding: 1.5em 20px;
	background-color: rgba(255, 255, 255, .8);
	text-align: left;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Verdana, Meiryo, "M+ 1p", sans-serif;
}

.works .txt>div ul li {
	display: block;
	margin-right: 1em;
	margin-left: 1em;
	padding: .25em 0;
	text-indent: -1em;
	font-size: 95%;
	line-height: 1.6;
}

.works .txt>div ul li::before {
	color: #67B6DD;
	content: "・";
}

@media (max-width:768px) {
	.works {
		background: url(../img/top/works-image.jpg) right bottom / 95% auto no-repeat;
	}

	.works>div {
		position: relative;
		margin: 0 auto;
		padding: 4em 0 16em;
		width: 90%;
	}

	.works .txt {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.works .txt>div {
		padding: 2em;
		width: 100%;
	}

	.works .txt>div:first-child {
		margin-bottom: 2em;
	}

	.works .txt>div h4 {
		margin-bottom: 2em;
		border-bottom: 2px solid #67B6DD;
	}

	.works .txt>div h4 span {
		margin-bottom: .5em;
		font-size: 130%;
	}

	.works .txt>div p {
		margin: 0 auto;
		max-width: 350px;
	}

	.works .txt>div ul {
		position: static;
		margin-top: 1.5em;
		padding: 1em 1.5em;
	}

	.works .txt>div ul li {
		display: block;
		margin-right: 0;
	}
}

/*===============*/
/* person */
/*===============*/
.person {
	position: relative;
	padding: 100px 0;
	background-color: #F4F8FA;
}

.person ul {
	position: relative;
	left: 50%;
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 1710px;
	transform: translateX(-50%);
}

.person ul li {
	width: 319px;
}

@media (max-width:768px) {
	.person {
		padding: 4em 0;
	}

	.person ul {
		width: 200%;
	}

	.person ul li {
		width: calc(20% - .5em);
	}
}

/*===============*/
/* top_message */
/*===============*/
.top_message>div {
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-box-align: end;
	align-items: flex-end;
	-ms-flex-align: end;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 auto;
	padding: 100px 0;
	width: 980px;
}

.top_message .txt {
	width: 50%;
}

.top_message .img {
	width: calc(50% - 98px);
}

.top_message .img p {
	margin-top: 20px;
	text-align: right;
	line-height: 1.8;
}

.top_message .img p>* {
	display: block;
}

.top_message .img p small {
	font-size: 85%;
}

.top_message .img p span {
	margin-right: -.2em;
	letter-spacing: .2em;
	font-size: 140%;
}

@media (max-width:768px) {
	.top_message>div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 4em 0;
		width: 90%;
	}

	.top_message .txt {
		width: 100%;
	}

	.top_message .img {
		margin: 2em auto 0;
		width: 80%;
	}

	.top_message .img p {
		margin-top: 1em;
	}

	.top_message .img p small {
		font-size: 80%;
		line-height: 1.6;
	}
}

/*===============*/
/* recruit */
/*===============*/
.recruit {
	position: relative;
}

.recruit::before {
	position: absolute;
	top: 0;
	bottom: 70px;
	width: 50%;
	background-color: #F4F8FA;
	content: "";
}

.recruit>div {
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 auto;
	padding-top: 100px;
	width: 980px;
}

.recruit .txt {
	width: 280px;
}

.recruit .img {
	width: calc(100% - 290px - 70px);
}

.recruit .img img {
	width: 683px;
}

@media (max-width:768px) {
	.recruit {
		background-color: #F4F8FA;
	}

	.recruit::before {
		display: none;
	}

	.recruit>div {
		display: block;
		padding: 7em 0;
		width: 90%;
	}

	.recruit .txt {
		width: 100%;
	}

	.recruit .img {
		display: none;
	}
}








.abox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}
.swiper-area {
    position: relative;
    padding: 50px 0 0;
}
.swiper-slide {
	position: relative;
}
.swiper-slide .text-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(90deg, rgba(103,182,221,0.70) 0%, rgba(96,227,187,0.70) 100%);
    box-sizing: border-box;
    padding: 20px 20px 0;
}
.swiper-slide .text-box p {
    line-height: 1.6em;
    color: #FFF;
}
.swiper-slide .text-box .p01 {
    font-size: 100%;
}
.swiper-slide .text-box .p02 {
    font-size: 140%;
}
.swiper-slide .text-box .p03 {
    font-size: 90%;
}
.swiper-button-arrow {
  width: 100px;
  position: absolute;
  top: -20px;
  right: 20%;
  z-index: 10;
}
.swiper-button-next2 {
    background-image: url("../img/top/top-person-next.svg");
    background-size: contain;
    width: 43px;
    height: 43px;
    right: 0px;
    position: absolute;
    cursor: pointer;
}
.swiper-button-prev2 {
    background-image: url("../img/top/top-person-prev.svg");
    background-size: contain;
    width: 43px;
    height: 43px;
    left: 0;
     position: absolute;
    cursor: pointer;
}

@media (max-width:768px) {
.swiper-button-arrow {
  width: 80px;
  position: absolute;
  top: 0px;
  right: auto;
  left: calc(50% - 40px);
  z-index: 10;
}
.swiper-button-next2 {
    background-image: url("../img/top/top-person-next.svg");
    background-size: contain;
    width: 30px;
    height: 30px;
    right: 0px;
    position: absolute;
    cursor: pointer;
}
.swiper-button-prev2 {
    background-image: url("../img/top/top-person-prev.svg");
    background-size: contain;
    width: 30px;
    height: 30px;
    left: 0;
     position: absolute;
    cursor: pointer;
}
}