@charset "utf-8";
#header {
	/*margin-top: -100px;*/
}

#header.hscr {
	margin-top: 0;
}

.start #header {
	margin-top: 0;
	transition: 1s ease;
}

.start #header.hscr {
	margin-top: 0;
	transition: 0s ease;
}

.lcl-main .svg-box svg {
	/* 色はお好みで */
	stroke: transparent;
	/* 色はお好みで */
	fill: transparent;
	/* 文字が大きい方がアニメーションが綺麗なので50pxを指定 */
	font-size: 50px;
	/* 100%だと最後まで表示されないので多めに設定する */
	stroke-dasharray: 150% 150%;
	/* 線が細いほうがアニメーションが綺麗なので0.5pxを指定 */
	stroke-width: .5px;
}
.lcl-main .svg-box.start svg {
	-webkit-animation: stroke-anim 3s ease forwards;
	animation: stroke-anim 3s ease forwards;
}
@-webkit-keyframes stroke-anim {
	0% {
		/* 100%だと最後まで表示されないので多めに設定する */
		stroke-dashoffset: 150%;
		fill:transparent;
		stroke: #fff;
	}
	50% {
		fill:transparent;
	}
	100% {
		stroke-dashoffset: 0%;
		fill:#fff;
		stroke: #fff;
	}
}

@keyframes stroke-anim {
	0% {
		/* 100%だと最後まで表示されないので多めに設定する */
		stroke-dashoffset: 150%;
		fill:transparent;
		stroke: #fff;
	}
	50% {
		fill:transparent;
	}
	100% {
		stroke-dashoffset: 0%;
		fill:#fff;
		stroke: #fff;
	}
}

/*背景動画用*/
#cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	background-color: transparent;
}
#cover > div {
	position: relative;
	width: 100%;
	opacity: 1;
	height: 100%;
	overflow: hidden;
	transition: 1.5s ease .4s;
	/*opacity: .01;*/
}

#cover.start > div {
	opacity: 1;
}
video.bgvid {
	position: absolute;
	left: 50%;
	bottom: 0;
	top: 0;
	margin: auto 0;
	min-width: 100%;
	min-height: 100%;
	transform: translateX(-50%);
}

.lcl-main {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.tablet .lcl-main {
	height: 70vw;
}
.tablet #cover {
	height: 70vw;
}


.lcl-main.start::before {
	opacity: 1;
}

#wrapper.start .lcl-main.start::before {
	/*opacity: .3;*/
	transition: 2s ease;
}

#wrapper.start .lcl-main.start::after {
	/*opacity: .4;*/
}

.lcl-main .svg-box {
	width: 36vw;
	height: 5vw;
	position: absolute;
	right: 10vw;
	top: -70px;
	bottom: 0;
	margin: auto 0;
	z-index: 2;
}

.ie .lcl-main .svg-box svg {
	fill: #fff;
	stroke: #fff;
}

@media screen and (min-width: 768px){
	.lcl-main .svg-box {
		min-width: 470px;
		max-width: 570px;
		min-height: 65px;
		max-height: 80px;
	}
}

.lcl-main .svg-box p {
	color: #fff;
	font-size: 20px;
	letter-spacing: 0.2em;
	visibility: hidden;
}

.lcl-news {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	width: 100%;
	height: 50px;
	transition : all 1s cubic-bezier(0, 0, 0.1, 1.0);
	transform-origin:center bottom;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX( 90deg );
	-moz-transform: rotateX( 90deg );
	-ms-transform: rotateX( 90deg );
	transform: rotateX( 90deg );
}


#wrapper.start .lcl-news {
	-webkit-transform: rotateX( 0deg );
	-moz-transform: rotateX( 0deg );
	-ms-transform: rotateX( 0deg );
	transform: rotateX( 0deg );
}

.lcl-news__ttl {
	width: 200px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 50px;
	background-color: #222;
	color: #fff;
}

.lcl-news__list {
	width: calc(100% - 200px);
	padding-left: 30px;
	font-size: 15px;
	line-height: 50px;
	color: #fff;
	text-align: left;
	background-color: #da261d;
}

.lcl-news__item-day {
	opacity: .5;
	display: inline-block;
	margin-right: 20px;
}

.lcl-news__btn {
	width: 50px;
	line-height: 50px;
	text-align: center;
	background-color: #1e3c68;
	color: #fff;
	font-size: 30px;
	display: block;
}

.news-ticker {
	position: relative;
	overflow: hidden;
}
.news-ticker .news-ticker--item[aria-hidden="false"] {
	position: relative;
	right: auto;
	-webkit-animation-duration: 0.5s;
			animation-duration: 0.5s;
	-webkit-animation-name: slidein;
			animation-name: slidein;
}
.news-ticker .news-ticker--item[aria-hidden="true"] {
	position: absolute;
	right: 200%;
	width: 100%;
	-webkit-animation-duration: 0.5s;
			animation-duration: 0.5s;
	-webkit-animation-name: slideout;
			animation-name: slideout;
}

@-webkit-keyframes slidein {
	from {
		left: 100%;
	}
	to {
		left: 0%;
	}
}

@keyframes slidein {
	from {
		left: 100%;
	}
	to {
		left: 0%;
	}
}
@-webkit-keyframes slideout {
	from {
		right: 0%;
	}
	to {
		right: 100%;
	}
}
@keyframes slideout {
	from {
		right: 0%;
	}
	to {
		right: 100%;
	}
}

.clear_both:before {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.sub-nav-list1 a {
	float: left;
}

.sub-nav-list1 {
	overflow-x: visible;
}

.sub-nav-list1 .sub-nav-item {
	width: calc((100% - 40px) / 4);
	margin-right: 10px;
}

/*共通*/
.background-square {
	display: none;
}
.lcl__ttl {
	font-size: 30px;
	letter-spacing: 0.05em;
	position: relative;
	line-height: 1.2;
	margin-bottom: 60px;
	display: inline-block;
}

.lcl__ttl::after {
	content: 'Contact';
	font-size: 24px;
	color: #5397fc;
	letter-spacing: 0.15em;
	position: absolute;
	bottom: -20px;
	right: -50px;
	margin: auto;
	font-family: 'Shadows Into Light', cursive;
	font-style: italic;
	transform: skew(-11deg) rotate(-11deg);
}


/*box01*/

.lcl-box01 {
	padding: 100px 0;
}

.lcl-box01-in {
	position: relative;
	z-index: 2;
	align-content: center;
}
.lcl-box01-left {
	width: 45%;
	margin-right: -80px;
	position: relative;
}

.lcl-box01-right {
	width: calc(55% + 80px);
	position: relative;
}

.lcl-box01__ttl {
	font-size: 30px;
	letter-spacing: 0.05em;
	position: relative;
	line-height: 1.2;
	margin-bottom: 80px;
	display: inline-block;
}

.lcl-box01__ttl::after {
	content: ' Performance';
	font-size: 24px;
	color: #5397fc;
	letter-spacing: 0.15em;
	position: absolute;
	bottom: -30px;
	right: -80px;
	margin: auto;
	font-family: 'Shadows Into Light', cursive;
	font-style: italic;
	transform: skew(-11deg) rotate(-11deg);
}

.lcl-box01__ttl2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 30px;
	letter-spacing: 0.15em;
}

.lcl-box01__txt {
	line-height: 30px;
	font-size: 15px;
}

.slide-box01 {
	box-shadow: 0 2rem 3rem -1rem rgba(0, 0, 0, 0.3);
	margin-right: 100px;
}

.slide-box02 {
	box-shadow: 0 2rem 3rem -1rem rgba(0, 0, 0, 0.3);
	margin-left: 100px;
}

.slide-box01::before,
.slide-box02::before {
	content: "01";
	background-color: #da261d;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
	width: 50px;
	position: absolute;
	left: -25px;
	top: 25px;
	z-index: 2;
	color: #fff;
}

.slide-box02::before {
	content: "02";
}

.slider {
	width: calc(100% - 220px);
	height: 220px;
	overflow: hidden;
}

.slider img {
	width: 100%;
	max-width: none;
	min-height: 100%;
}

.slick-list,
.slick-track {
	height: 100%;
}

.slick-dots {
	position: absolute;
	bottom: 8px;
	right: 10px;
	text-align: right;
	width: 100%;
}

.slick-dots li {
	display: inline-block;
	width: 9px;
	height: 9px;
	margin: 0 5px;
}
.slick-dots li button {
	width: 9px;
	height: 9px;
	display: block;
	border-radius:50%;
	background-color: #999;
	overflow: hidden;
	text-indent: -9999px;
	cursor: pointer;
}

.slick-dots li.slick-active button {
	background-color: red
}

.lcl-box01__btn {
	height: 220px;
	width: 220px;
	padding-left: 25px;
	position: relative;
	transition: 0.3s ease;
}

.lcl-box01__btn.bk {
	background: url(../common/img/bg/bg_bk.jpg) center repeat;
	color: #fff;
}
.lcl-box01__btn.wh {
	background: url(../common/img/bg/bg_wh.jpg) center repeat;
}

/*.lcl-box01__btn::after {*/
	/*content: '\f105';*/
	/*font-family: fontawesome;*/
	/*height: 1em;*/
	/*line-height: 1;*/
	/*display: block;*/
	/*position: absolute;*/
	/*top: 0;*/
	/*bottom: 0;*/
	/*right: 20px;*/
	/*margin: auto;*/
	/*font-weight: bold;*/
	/*font-size: 20px;*/
	/*transition: 0.3s ease;*/
/*}*/

.lcl-box01__btn.wh::after {
	color: #da261d;
}

@media screen and (min-width: 768px){
	.lcl-box01__btn:hover {
		opacity: .6;
	}
	.lcl-box01__btn:hover::after {
		right: 15px;
	}
}

.lcl-box01__btn-in h3 {
	font-size: 14px;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.lcl-box01__btn-in p {
	font-size: 10px;
	letter-spacing: 0.2em;
	opacity: .5;
}


/*box02*/

.lcl-box02 {
	background-position: center 50px;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	height: 38vw;
	width: 100%;
	justify-content: center;/* 3 */
		align-items: center;    /* 4 */
}

.lcl-box02-h1 {
	font-weight: bold;
	font-size: 46px;
	color: #ffffff;
	padding-bottom: 10px;
}

.lcl-box02-p {
	line-height: 50px;
	font-style: inherit!important;
	margin-bottom: 30px!important;
}

@media screen and (min-width: 768px){
	.tablet .lcl-box01 {
		padding: 80px 0 30px;
	}
	.lcl-box02 {
		background-attachment: fixed;
		min-height: 500px;
		max-height: 600px;
	}
	.tablet .lcl-box02 {
		background-attachment: scroll;
		height: 43vw;
		padding-top: 50px;
		min-height: 650px;
		max-height: 750px;
	}
}

.lcl-box02-in {
	text-align: center;
	position: relative;
	z-index: 22;
}

.lcl-box02-in img {
	width: 426px;
	margin-left: auto;
	margin-right: auto;
}

.lcl-box02 .linkbtn {
	display: inline-flex;
	padding: 0;
}

.lcl-box02 .linkbtn .linkbtn-in{
	width: 100%;
}

.lcl-box02__txt {
	font-size: 30px;
	font-weight: 700;
	font-style:italic;
	color: #fff;
	letter-spacing: .1em;
}


/*box03*/

.lcl-box03 {
	position: relative;
	z-index: 2;
	height: 620px;
}
.lcl-box03-in {
	align-content: center;
}
.lcl-box03__ttl {
	font-size: 30px;
	letter-spacing: 0.05em;
	position: relative;
	line-height: 1.2;
	margin-bottom: 80px;
	display: inline-block;
}

.lcl-box03__ttl::after {
	content: ' Business';
	font-size: 24px;
	color: #5397fc;
	letter-spacing: 0.15em;
	position: absolute;
	bottom: -20px;
	right: -50px;
	margin: auto;
	font-family: 'Shadows Into Light', cursive;
	font-style: italic;
	transform: skew(-11deg) rotate(-11deg);
}

.lcl-box03__ttl2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 30px;
	letter-spacing: 0.15em;
}

.lcl-box03__txt {
	line-height: 30px;
	font-size: 15px;
}

.lcl-box03-left {
	padding-top: 30px;
	width: 34%;
}

.lcl-box03-right {
	width: 66%;
	max-width: 720px;
}

.lcl-box03-item {
	box-shadow: 0 2rem 3rem -1rem rgba(0, 0, 0, 0.3);
	position: relative;
}

@media screen and (min-width: 768px){
	.lcl-box03-item:nth-child(1) {
		top:10px;
	}
	.lcl-box03-item:nth-child(2) {
		top:-80px;
	}
	.lcl-box03-item:nth-child(3) {
		top:-40px;
	}
}

.lcl-box03-item__link {
	transition: .3s ease;
}

.lcl-box03-item__img {
	background: center /100% auto no-repeat;
	width: 180px;
	height: 180px;
	overflow: hidden;
}
.lcl-box03-item__img img{
	transition: .3s ease;
}

.lcl-box03-item__btn {
	height: 86px;
	width: 180px;
	padding-left: 25px;
	position: relative;
	transition: 0.3s ease;
}

.lcl-box03-item__btn.bk {
	background: url(../common/img/bg/bg_bk.jpg) center repeat;
	color: #fff;
}
.lcl-box03-item__btn.wh {
	background: url(../common/img/bg/bg_wh.jpg) center repeat;
}

.lcl-box03-item__btn i {
	height: 1em;
	line-height: 1;
	display: block;
	position: absolute;
	top: 60%;
	left: auto;
	right: 20px;
	margin: auto;
	font-weight: bold;
	font-size: 20px;
	transition: 0.3s ease;
	background: transparent;
}

.lcl-box03-item__btn i {
	color: #da261d;
}

.lcl-box03__btn-in h3 {
	font-size: 14px;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.lcl-box03__btn-in p {
	font-size: 10px;
	letter-spacing: 0.2em;
	opacity: .5;
}

@media screen and (min-width: 768px){
	.lcl-box03-item__link:hover .lcl-box03-item__img img{
		transform: scale(1.08);
		transition: 0.3s ease;
	}
	.lcl-box03-item__link:hover .lcl-box03-item__img {
		background-size: 108% auto;
		transition: .5s ease;
	}
	.lcl-box03-item__link:hover .lcl-box03-item__btn::after {
		right: 15px;
	}
}



@media screen and (max-width: 767px){
	/* ---------------------------------------------------------------- SP ---- */
	/* -- main -- */
	video.bgvid {
	}

	.lcl-main {
		height: 158vw;
	}

	#cover {
		height: 158vw;
	}

	.lcl-main .svg-box {
		width: 90vw;
		height: 70px;
		right: 5vw;
		top: 0;
	}

	.lcl-main .svg-box p {
		font-size: 16px;
		text-align: center;
		margin-top: 5px;
	}

	.lcl-news {
		height: auto;
		width: 100%;
		align-items: stretch;
	}
	.lcl-news__ttl {
		width: 18%;
		font-size: 3.2vw;
		line-height: 11vw;
	}
	.lcl-news__list {
		width: 82%;
		font-size: 3.6vw;
		line-height: 11vw;
		white-space: nowrap;
		padding-left:15px;
	}
	.lcl-news__item-day {
		margin-right: 10px;
		font-size: 3.4vw;
	}

	/* -- box01 -- */
	.lcl-box01 {
		padding: 30px 0 50px;
		position: relative;
		z-index: 2;
	}

	.lcl-box01-left {
		width: 100%;
	}
	.lcl-box01-right {
		width: 100%;
	}

	.lcl-box01__ttl {
		font-size: 22px;
		line-height: 1.2;
		margin-bottom: 30px;
		display: inline-block;
	}

	.lcl-box01__ttl::after {
		font-size: 16px;
		bottom: -18px;
		right: -60px;
	}

	.lcl-box01__ttl2 {
		font-size: 18px;
		margin-bottom: 15px;
		letter-spacing: 0.15em;
	}

	.lcl-box01__txt {
		line-height: 23px;
		font-size: 13px;
	}

	.lcl-box01__btn {
		height: 30vw;
		width: 100%;
		padding-left: 0;
		position: relative;
		transition: 0.3s ease;
	}

	.slider {
		width:100%;
		height: 50vw;
		overflow: hidden;
	}

	.slide-box01 {
		margin-right: auto;
		margin-left: 50px;
		box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, 0.3);
	}

	.lcl-box01__btn {
		height: 80px;
		width: 100%;
		padding-left: 20px;
	}

	.lcl-box01__btn-in h3 {
		font-size: 17px;
		letter-spacing: 0.1em;
		margin-bottom: 0;
	}

	.slide-box02 {
		margin-left: auto;
		margin-right: 50px;
		box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, 0.3);
	}

	.slide-box01::before, .slide-box02::before {
		font-size: 15px;
		line-height: 40px;
		width: 40px;
		top: 20px;
		left:-20px;
	}
	.slide-box02::before {
		left: auto;
		right: -20px;
	}

	/* -- box02 -- */
	.lcl-box02 {
		background-position: center;
		height: 100vw;
		width: 100%;
		position: relative;
		z-index: 1;
	}

	.lcl-box02__txt {
		font-size: 20px;
	}

	.lcl-box02-in img {
		width: 80%;
	}

	/* -- box03 -- */
	.lcl-box03 {
		height: auto;
		padding: 30px 0 10px;
	}

	.lcl-box03-left {
		width: 100%;
	}

	.lcl-box03-right {
		width: 100%;
		max-width: auto;
	}

	.lcl-box03__ttl {
		font-size: 22px;
		line-height: 1.2;
		margin-bottom: 30px;
		display: inline-block;
	}

	.lcl-box03__ttl::after {
		font-size: 16px;
		bottom: -18px;
		right: -40px;
	}

	.lcl-box03__ttl2 {
		font-size: 18px;
		margin-bottom: 15px;
		letter-spacing: 0.15em;
	}

	.lcl-box03__txt {
		line-height: 23px;
		font-size: 13px;
	}

	.lcl-box03-item {
		width: 70%;
		margin-bottom: 40px;
		box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, 0.3);
	}
	.lcl-box03-item:nth-child(1) {
	}
	.lcl-box03-item:nth-child(2) {
		margin-left: auto;
		margin-right: auto;
	}
	.lcl-box03-item:nth-child(3) {
		margin-left: auto;
		margin-right: 0;
	}

	.lcl-box03-item__img {
		width: 100%;
		height: 70vw;
		transition: .3s ease;
		background-position: center 20%;
	}

	.lcl-box03-item__btn {
		height:80px;
		width: 100%;
		padding-left: 20px;
	}

	.lcl-box03__btn-in h3 {
		font-size: 16px;
		letter-spacing: 0.1em;
		margin-bottom: 5px;
	}
}
