@charset "utf-8";

html {
	font-size: 10px;
}

@media screen and (max-width:960px){
	html {
		font-size: 1.04166667vw;
	}
}

@media screen and (max-width:767px){
	html {
		font-size: 2.66666667vw;
		/*font-size: 10px;*/
	}
}

/**********************************

 fonts

***********************************/
@font-face {
	font-family: 'Rational Text Book';
	src: url('../fonts/RationalText-Book.eot');
	src: local('Rational Text Book'), local('RationalText-Book'),
	url('../fonts/RationalText-Book.eot?#iefix') format('embedded-opentype'),
	url('../fonts/RationalText-Book.woff2') format('woff2'),
	url('../fonts/RationalText-Book.woff') format('woff'),
	url('../fonts/RationalText-Book.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Rational Text';
	src: url('../fonts/RationalText-Medium.eot');
	src: local('Rational Text Medium'), local('RationalText-Medium'),
	url('../fonts/RationalText-Medium.eot?#iefix') format('embedded-opentype'),
	url('../fonts/RationalText-Medium.woff2') format('woff2'),
	url('../fonts/RationalText-Medium.woff') format('woff'),
	url('../fonts/RationalText-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Rational Text';
	src: url('../fonts/RationalText-SemiBold.eot');
	src: local('Rational Text SemiBold'), local('RationalText-SemiBold'),
	url('../fonts/RationalText-SemiBold.eot?#iefix') format('embedded-opentype'),
	url('../fonts/RationalText-SemiBold.woff2') format('woff2'),
	url('../fonts/RationalText-SemiBold.woff') format('woff'),
	url('../fonts/RationalText-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Rational Text';
	src: url('../fonts/RationalText-Bold.eot');
	src: local('Rational Text Bold'), local('RationalText-Bold'),
	url('../fonts/RationalText-Bold.eot?#iefix') format('embedded-opentype'),
	url('../fonts/RationalText-Bold.woff2') format('woff2'),
	url('../fonts/RationalText-Bold.woff') format('woff'),
	url('../fonts/RationalText-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

.rational-text-book {
	font-family: 'Rational Text Book';
}

.rational-text {
	font-family: 'Rational Text';
}

.Inter {
	font-family: "Inter", sans-serif;
}


/**********************************

 wrapper

***********************************/
#wrapper {
}

@media screen and (min-width:768px){
	#wrapper {
		min-width: auto;
	}
}

@media screen and (max-width:767px){
	#wrapper {
		padding-top: 0;
	}
}

/**********************************

 pagetop

***********************************/
#pagetop {
	display: none !important;
}

@media screen and (min-width:768px){
}

/**********************************

 l-header

***********************************/
.l-header {

}

.l-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.l-header__inner-logo {
	width: 182px;
	margin: 0;
}

.l-header__inner-logo a {
	display: block;
}

.l-header__inner-logo a img {
	display: block;
	width: 100%;
}

.l-header__inner-right {
	display: flex;
	align-items: center;
}

.l-header__inner-right-lang {
	display: flex;
	align-items: center;
	margin: 0 20px 0 0;
	list-style: none;
	font-size: 16px;
	font-weight: 600;
}

.l-header__inner-right-lang li {
	margin-right: .1em;
}

.l-header__inner-right-lang li:last-child {
	margin-right: 0;
}

.l-header__inner-right-lang li:after {
	content: "/";
	display: inline-block;
	margin-left: .2em;
}

.l-header__inner-right-lang li:last-child:after {
	display: none;
}

.l-header__inner-right-lang li a {
	color: #010F3B;
	text-decoration: underline;
}

.l-header__inner-right-lang li a:hover {
	text-decoration: none;
}

.l-header__inner-right-btn {
	font-size: 16px;
	font-weight: 600;
}

.l-header__inner-right-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 148px;
	height: 44px;
	color: #000E3E;
	background-color: #FEC847;
	text-align: center;
	border-radius: 6px;
	position: relative;
	z-index: 1;
}

@media screen and (min-width:768px){

	.l-header__inner-right-btn a:before {
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-radius: 100%;
		background-color: rgba(255,255,255,.15);
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: -1;
		transform: translateY(-50%) translateX(-50%);
		-webkit-transform: translateY(-50%) translateX(-50%);
		transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.l-header__inner-right-btn a:hover:before {
		width: 40px;
		height: 40px;
		opacity: 1;
	}
}

@media screen and (max-width:767px){

	.l-header__inner {
		height: 75px;
		/*height: 85px;*/
	}

	.l-header__inner-logo {
		width: 103px;
		margin-right: 13px;
	}

	.l-header__inner-right {
		display: block;
	}

	.l-header__inner-right-lang {
		justify-content: flex-end;
		padding: 0;
		margin: 0 0 3px 0;
		font-size: 13px;
	}

	.l-header__inner-right-lang li {
		margin-right: .1em;
	}

	.l-header__inner-right-lang li:last-child {
		margin-right: 0;
	}

	.l-header__inner-right-lang li:after {
		content: "/";
		display: inline-block;
		margin-left: .2em;
	}

	.l-header__inner-right-lang li:last-child:after {
		display: none;
	}

	.l-header__inner-right-lang li a {
		color: #010F3B;
		text-decoration: underline;
	}

	.l-header__inner-right-lang li a:hover {
		text-decoration: none;
	}

	.l-header__inner-right-btn {
		font-size: 16px;
	}

	.l-header__inner-right-btn a {
		width: 149px;
		height: 44px;
		border-radius: 3px;
	}
}

/**********************************

 hd-fixed

***********************************/

@media screen and (min-width:768px){
	.hd-fixed {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		/*height: 57px;*/
		background-color: #ffffff;
		z-index: 999;
	}
}

@media screen and (max-width:767px){
	.hd-fixed {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		/*height: 57px;*/
		background-color: #ffffff;
		z-index: 999;
	}

}

/**********************************

 footer

***********************************/
.footer {

}

.footer_bottom {

}

.footer_bottom .container {
	width: 1190px;
	max-width: 100%;
}

.footer_bottom_link li a {
	color: #2C2C2C;
}

@media screen and (max-width:767px){
	.footer_contact {
		display: none !important;
	}

	.footer_bottom {
		padding-top: 0;
	}

	.footer_bottom_link_wrap {
		background: #fff;
	}
}

/**********************************

 l-main

***********************************/
.l-main {
	font-family: 'Rational Text', "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	color: #000f3c;
	font-size: 18px;
	line-height: 1.444444444444444;
	background: #f2f3f5;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.l-main img {
	max-width: 100%;
}

@media screen and (min-width:768px){
	.l-main {
		/*padding-top: 80px;*/
	}

	.l-main .sp-only {
		display: none !important;
	}
}

@media screen and (max-width:767px){
	.l-main {
		/*padding-bottom: 10px;*/
		/*margin-bottom: -10px;*/
		font-size: 15px;
		line-height: 1.733333333333333;
	}

	.l-main .pc-only {
		display: none !important;
	}

}

/**********************************

 define

***********************************/
.define-wrap {
	padding: 0 5rem;
}

.define-inner {
	width: 86rem;
	max-width: 100%;
	margin: 0 auto;
}

@media screen and (max-width:767px){

	.define-wrap {
		padding: 0 3rem;
	}
}


/**********************************

 ov

***********************************/
.ov {
	transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ov:hover {
	opacity: .7;
}

/**********************************

 c-btn01

***********************************/
a.c-btn01 {
	display: inline-block;
	padding: 1.1rem 1.8rem;
	color: #000f3c;
	font-size: 2.083rem;
	font-weight: 500;
	text-decoration: none;
	background: #ffc945;
	border-radius: .5rem;
}

a.c-btn01 span {
	padding-right: 3.8rem;
	position: relative;
	z-index: 1;
}

a.c-btn01 span:before {
	content: "";
	display: block;
	width: 2.8rem;
	height: 2.8rem;
	background: url(../img/lp/icon_arr01.png) no-repeat center center / contain;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width:767px){

	a.c-btn01 {
		padding: 1.05rem 1.5rem;
		font-size: 1.756rem;
		line-height: 1.2;
		border-radius: .5rem;
	}

	a.c-btn01 span {
		display: inline-block;
		padding-right: 3rem;
	}

	a.c-btn01 span:before {
		width: 2rem;
		height: 2rem;
	}
}

/**********************************

 c-hero

***********************************/
/*.c-hero {*/
/*	padding: 0 5rem;*/
/*	background: url(../img/lp/hero_bg01_pc.jpg) no-repeat center center / cover;*/
/*	border-radius: 0 0 0 19rem;*/
/*	position: relative;*/
/*	z-index: 1;*/
/*}*/

/*.c-hero__inner {*/
/*	height: 63.3rem;*/
/*	padding-top: 4rem;*/
/*	padding-bottom: 4rem;*/
/*	position: relative;*/
/*	z-index: 1;*/
/*}*/

/*.c-hero__inner:before {*/
/*	content: "";*/
/*	display: block;*/
/*	width: calc(100% + 100vw);*/
/*	height: 35rem;*/
/*	margin-right: 40rem;*/
/*	background: url(../img/lp/hero_dots01.png) repeat right top;*/
/*	background-size: 1.8rem 1.8rem;*/
/*	position: absolute;*/
/*	bottom: 0;*/
/*	right: 0;*/
/*	z-index: -1;*/
/*}*/

/*.c-hero__inner-logo {*/
/*	width: 16.8rem;*/
/*}*/

/*.c-hero__inner-logo img {*/
/*	max-width: none;*/
/*	width: 100%;*/
/*}*/

/*.c-hero__inner-ttl {*/
/*	margin: 3rem 0 0 0;*/
/*	color: #fff;*/
/*	font-size: 4.5rem;*/
/*	font-weight: 600;*/
/*	line-height: 1.07568046;*/
/*}*/

/*.c-hero__inner-txt01 {*/
/*	margin: 3rem 0 0 0;*/
/*	color: #fff;*/
/*	font-size: 1.5rem;*/
/*	font-weight: 600;*/
/*	line-height: 1.21465969;*/
/*}*/

.c-hero {
	padding: 0 5vw;
	background: url(../img/lp/hero_bg01_pc.jpg?1) no-repeat center center / cover;
	border-radius: 0 0 0 19rem;
	position: relative;
	z-index: 1;
}

.c-hero__inner {
	width: 86vw;
	height: 63.3vw;
	padding-top: 6.5vw;
	padding-bottom: 4vw;
	position: relative;
	z-index: 1;
}

.c-hero__inner:before {
	content: "";
	display: block;
	width: calc(100% + 100vw);
	height: 30vw;
	margin-right: 40vw;
	background: url(../img/lp/hero_dots01.png) repeat right top;
	background-size: 1.8rem 1.8rem;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.c-hero__inner-logo {
	width: 16.8vw;
}

.c-hero__inner-logo img {
	max-width: none;
	width: 100%;
}

.c-hero__inner-ttl {
	margin: 6.5vw 0 0 0;
	color: #fff;
	font-size: 4.5vw;
	font-weight: 600;
	line-height: 1.07568046;
}

.c-hero__inner-txt01 {
	margin: 3vw 0 0 0;
	color: #fff;
	font-size: 1.5vw;
	font-weight: 600;
	line-height: 1.21465969;
}

@media screen and (max-width:767px){

	.c-hero {
		padding: 0 3rem;
		background: url(../img/lp/hero_bg01_sp.png?1) no-repeat center center / cover;
		border-radius: 0;
	}

	.c-hero__inner {
		height: 56.3rem;
		padding-top: 8.6rem;
		padding-bottom: 0;
	}

	.c-hero__inner:before {
		height: 29.5rem;
		margin-right: 20.7rem;
		background: url(../img/lp/hero_dots02.png) repeat right top;
		background-size: 1.8rem 1.8rem;
	}

	.c-hero__inner-logo {
		width: 10.4rem;
	}

	.c-hero__inner-ttl {
		margin: 4rem 0 0 0;
		font-size: 2.4rem;
		line-height: 1.3;
	}

	.c-hero__inner-txt01 {
		margin: 1.5rem 0 0 0;
		font-family: 'Rational Text Book';
		font-size: .833rem;
		font-weight: 400;
		line-height: 1.21465969;
	}
}



/**********************************

 c-promise

***********************************/
.c-promise {
}

.c-promise__inner {
	padding: 5rem 0 3.5rem;
	position: relative;
	z-index: 1;
}

.c-promise__inner:before {
	content: "";
	display: block;
	width: calc(100% + 100vw);
	height: 34.5rem;
	background: url(../img/lp/promise_dots01.png) repeat center;
	background-size: 1.8rem 1.8rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-promise__inner-ttl {
	margin: 0;
	font-size: 3.6rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}

.c-promise__inner-txt01 {
	margin: .6rem 0 0 0;
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

.c-promise__inner-list {
	display: flex;
	justify-content: space-between;
	margin: 3.5rem 0 0 0;
}

.c-promise__inner-list-sec {
	width: 25.2rem;
	position: relative;
	z-index: 1;
}

.c-promise__inner-list-sec .plus {
	width: 2.5rem;
	margin-top: -.6rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.c-promise__inner-list-sec .pic {
	padding-left: 1.2rem;
}

.c-promise__inner-list-sec .pic img {
	border-radius: 1.5rem;
}

.c-promise__inner-list-sec .cont {
	margin: 2rem 0 0 0;
}

.c-promise__inner-list-sec .ttl {
	margin: 0;
	font-size: 2.1rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.06673068;
}

.c-promise__inner-list-sec .txt01 {
	margin-top: 1.5rem;
	font-size: 1.1rem;
	font-style: italic;
	text-align: center;
	line-height: 1.2;
}

.c-promise__inner-txt02 {
	margin: 2rem 0 0 0;
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

.c-promise__inner-btn {
	margin-top: 2.5rem;
	text-align: center;
}

@media screen and (max-width:767px){

	.c-promise__inner {
		padding: 3rem 0 2.5rem;
	}

	.c-promise__inner:before {
		height: 34.5rem;
		margin-top: 14rem;
		margin-left: 23rem;
		background: url(../img/lp/promise_dots02.png) repeat center;
		background-size: 1.8rem 1.8rem;
		position: absolute;
		top: 0;
		bottom: auto;
		left: 0;
		z-index: -1;
		transform: none;
		-webkit-transform: none;
	}

	.c-promise__inner:after {
		content: "";
		display: block;
		width: calc(100% + 100vw);
		height: 38rem;
		margin-right: 25rem;
		background: url(../img/lp/promise_dots01.png) repeat center;
		background-size: 1.8rem 1.8rem;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: -1;
	}

	.c-promise__inner-ttl {
		font-size: 2.1rem;
		line-height: 1.1;
	}

	.c-promise__inner-txt01 {
		margin: 1rem 0 0 0;
		font-size: 1.4rem;
	}

	.c-promise__inner-list {
		display: block;
		margin: 3rem 0 0 0;
	}

	.c-promise__inner-list-sec {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: auto;
		margin-top: 2rem;
	}

	.c-promise__inner-list-sec:first-child {
		margin-top: 0;
	}

	.c-promise__inner-list-sec:nth-child(odd) {
	}

	.c-promise__inner-list-sec:nth-child(even) {
		flex-direction: row-reverse;
	}

	.c-promise__inner-list-sec .plus {
		width: 1.5rem;
		margin-top: -.5rem;
	}

	.c-promise__inner-list-sec:nth-child(odd) .plus {
		left: 0;
		margin-left: -.5rem;
	}

	.c-promise__inner-list-sec:nth-child(even) .plus {
		margin-right: 14rem;
		left: auto;
		right: 0;
	}

	.c-promise__inner-list-sec .plus img {
		display: block;
	}

	.c-promise__inner-list-sec .pic {
		width: 15rem;
		padding-left: 0;
	}

	.c-promise__inner-list-sec .pic img {
		width: 100%;
		max-width: none;
		border-radius: 1.5rem;
	}

	.c-promise__inner-list-sec .cont {
		width: 15.6rem;
		margin: 0;
	}

	.c-promise__inner-list-sec .ttl {
		margin: 0;
		font-size: 1.4rem;
		line-height: 1.2;
	}

	.c-promise__inner-list-sec:nth-child(odd) .ttl {
		text-align: left;
	}

	.c-promise__inner-list-sec:nth-child(even) .ttl {
		text-align: right;
	}

	.c-promise__inner-list-sec .txt01 {
		margin-top: 1rem;
		font-size: .833rem;
		line-height: 1.2;
	}

	.c-promise__inner-list-sec:nth-child(odd) .txt01 {
		text-align: left;
	}

	.c-promise__inner-list-sec:nth-child(even) .txt01 {
		text-align: right;
	}

	.c-promise__inner-txt02 {
		margin: 2.5rem -.5em 0;
		font-size: 1.389rem;
		line-height: 1.2;
	}

	.c-promise__inner-btn {
		margin-top: 1.5rem;
	}
}



/**********************************

 c-movie

***********************************/
.c-movie {
	background: #000f3c url(../img/lp/movie_bg01_pc.png) no-repeat center bottom;
	background-size: 107.9rem auto;
	border-radius: 0 19rem 0 0;
}

.c-movie__inner {
	padding: 4rem 0 6rem;
}

.c-movie__inner-ttl {
	margin: 0;
	color: #fff;
	font-size: 4.6rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}

.c-movie__inner-content {
	display: flex;
	justify-content: space-between;
	margin: 4rem 0 0 0;
}

.c-movie__inner-content-left {
	flex: 1;
	margin-right: 3rem;
}

.c-movie__inner-content-left .ttl {
	margin: 0;
	color: #fff;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1.2;
}

.c-movie__inner-content-left .txt01 {
	margin: 3rem 0 0 0;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.2;
}

.c-movie__inner-content-left .btn01 {
	margin-top: 3.5rem;
}

.c-movie__inner-content-right {
	width: 46.4rem;
}

.c-movie__inner-content-right .youtube {
	position: relative;
	z-index: 1;
}

.c-movie__inner-content-right .youtube .plus {
	width: 2.5rem;
	margin-top: -1.2rem;
	margin-left: -.9rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.c-movie__inner-content-right .youtube__inner {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.c-movie__inner-content-right .youtube__inner iframe {
	border: 1px solid #aaafbd;
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.c-movie__inner-content-right .txt01 {
	margin-top: 1.5rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: right;
	line-height: 1.2;
}

@media screen and (max-width:767px){

	.c-movie {
		background: #000f3c url(../img/lp/movie_bg01_sp.png) no-repeat center top;
		background-size: 100% auto;
		border-radius: 0 10rem 0 0;
	}

	.c-movie__inner {
		padding: 3.5rem 0 4rem;
	}

	.c-movie__inner-ttl {
		font-size: 2.5rem;
		text-align: left;
	}

	.c-movie__inner-content {
		display: block;
		margin: .8rem 0 0 0;
	}

	.c-movie__inner-content-left {
		flex: 1;
		margin-right: 0;
	}

	.c-movie__inner-content-left .ttl {
		font-size: 1.944rem;
	}

	.c-movie__inner-content-left .txt01 {
		margin: 1.5rem 0 0 0;
		font-size: 1.25rem;
	}

	.c-movie__inner-content-left .btn01 {
		margin-top: 3.5rem;
	}

	.c-movie__inner-content-right {
		width: auto;
		margin-top: 3rem;
	}

	.c-movie__inner-content-right .youtube {
		position: relative;
		z-index: 1;
	}

	.c-movie__inner-content-right .youtube .plus {
		width: 1.7rem;
		margin-top: -.8rem;
		margin-left: -.6rem;
	}

	.c-movie__inner-content-right .youtube .plus img {
		display: block;
	}

	.c-movie__inner-content-right .youtube__inner iframe {
		border: 1px solid #aaafbd;
	}

	.c-movie__inner-content-right .txt01 {
		margin-top: 1rem;
		font-size: .94rem;
	}

	.c-movie__inner-content-right .btn01 {
		margin-top: 4.5rem;
		text-align: center;
	}
}



/**********************************

 c-cross-industry

***********************************/
.c-cross-industry {
	background: url(../img/lp/industry_bg01_pc.jpg) no-repeat center / cover;
	position: relative;
	z-index: 1;
}

.c-cross-industry:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/lp/industry_bg02_pc.png) no-repeat center;
	background-size: 120rem auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-cross-industry__inner {
	padding: 3rem 0 3rem;
}

.c-cross-industry__inner-ttl {
	margin: 0;
	font-size: 3.3rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}

.c-cross-industry__inner-list {
	display: flex;
	justify-content: space-between;
	width: 80rem;
	margin: 3.5rem auto 0;
}

.c-cross-industry__inner-list-sec {
	width: 23.9rem;
}

.c-cross-industry__inner-list-sec img {
	border-radius: 1rem;
}

.c-cross-industry__inner-list-sec .ttl {
	margin: 1.5rem 0 0 0;
	font-size: 1.95rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.06673068;
}

.c-cross-industry__inner-list-sec .txt01 {
	margin-top: 1.2rem;
	margin-left: -.5em;
	margin-right: -.5em;
	font-size: 1.25rem;
	font-style: italic;
	text-align: center;
	line-height: 1.5552;
}

@media screen and (max-width:767px){

	.c-cross-industry {
		background: url(../img/lp/industry_bg01_sp.jpg) no-repeat center / cover;
		overflow: hidden;
	}

	.c-cross-industry:before {
		display: none;
	}

	.c-cross-industry__inner {
		padding: 3.5rem 0 3rem;
	}

	.c-cross-industry__inner-ttl {
		margin: 0;
		font-size: 2.222rem;
	}

	.c-cross-industry__inner-list {
		display: block;
		width: 26rem;
		margin: 3rem auto 0;
		overflow: visible !important;
	}

	.c-cross-industry__inner-list .slick-prev {
		width: 2.8rem;
		height: 5.3rem;
		background: url(../img/lp/icon_prev01.png) no-repeat center / contain;
		position: absolute;
		top: 5.6rem;
		left: -4.8rem;
		z-index: 2;
		transform: none;
		-webkit-transform: none;
	}

	.c-cross-industry__inner-list .slick-prev:before {
		display: none;
	}

	.c-cross-industry__inner-list .slick-next {
		width: 2.8rem;
		height: 5.3rem;
		background: url(../img/lp/icon_next01.png) no-repeat center / contain;
		position: absolute;
		top: 5.6rem;
		right: -4.8rem;
		z-index: 2;
		transform: none;
		-webkit-transform: none;
	}

	.c-cross-industry__inner-list .slick-next:before {
		display: none;
	}

	.c-cross-industry__inner-list .slick-list {
		/*margin-right: -1.5rem;*/
		overflow: visible !important;
	}

	.c-cross-industry__inner-list .slick-track {
	}

	.c-cross-industry__inner-list-sec {
		width: auto;
		/*margin-right: 1.5rem;*/
		opacity: .6;
		transform: scale(.85, .85);
		-webkit-transform: scale(.85, .85);
		/*transform: scale(.74, .74);*/
		/*-webkit-transform: scale(.74, .74);*/
		transform-origin: center;
		transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-cross-industry__inner-list-sec.slick-active,
	.c-cross-industry__inner-list-sec.slick-current {
		opacity: 1;
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
	}

	/*.c-cross-industry__inner-list-sec.prev-slide {*/
	/*	transform-origin: center right;*/
	/*}*/

	.c-cross-industry__inner-list-sec img {
		width: 100%;
		max-width: none;
		border-radius: .838rem;
	}

	.c-cross-industry__inner-list-sec .ttl {
		margin: 1.2rem 0 0 0;
		font-size: 1.667rem;
		line-height: 1.06673068;
	}

	.c-cross-industry__inner-list-sec .txt01 {
		margin-top: .8rem;
		margin-left: 0;
		margin-right: 0;
		font-size: .972rem;
		line-height: 1.5552;
	}
}



/**********************************

 c-cv

***********************************/
.c-cv {
	background: #01123f;
}

.c-cv__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 4.5rem 0 5rem;
}

.c-cv__inner-left {
	flex: 1;
	margin-right: 3rem;
}

.c-cv__inner-left .ttl {
	margin: 0;
	color: #fff;
	font-size: 3.6rem;
	font-weight: 500;
	line-height: 1.2;
}

.c-cv__inner-left .txt01 {
	margin-top: .5rem;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.2;
}

.c-cv__inner-right {

}

.c-cv__inner-logo-area {
	width: 100%;
	margin-top: 5rem;
}

.c-cv__inner-logo-area .logo {
	width: 16.8rem;
	margin: 0 auto;
	text-align: center;
}

@media screen and (max-width:767px){

	.c-cv__inner {
		display: block;
		padding: 3.5rem 0;
	}

	.c-cv__inner-left {
		flex: 1;
		margin-right: 0;
	}

	.c-cv__inner-left .ttl {
		margin-right: -1em;
		font-size: 1.996rem;
		line-height: 1.2;
	}

	.c-cv__inner-left .txt01 {
		margin-top: 1.5rem;
		font-size: 1.008rem;
	}

	.c-cv__inner-right {
		margin-top: 2.5rem;
	}

	.c-cv__inner-right .btn01 {
		text-align: center;
	}

	.c-cv__inner-logo-area {
		width: 100%;
		margin-top: 3rem;
	}

	.c-cv__inner-logo-area .logo {
		width: 14.4rem;
	}
}


/**********************************

 xxx

***********************************/

@media screen and (max-width:767px){

}

