@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: #0b213e;
}
#cover > div {
	position: relative;
	width: 100%;
	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::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%; 
	z-index: 1;
	opacity: .01;
	transition: 1s ease;
}

.lcl-main.start::before {
	opacity:0;
}

#wrapper.start .lcl-main.start::before {
	opacity: .0;
	transition: 2s ease;
}

.lcl-main::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: url(../img/main/main2.png) center bottom /cover no-repeat scroll;
	z-index: 1;
	transition: 1s ease;
	opacity: .0;
}

#wrapper.start .lcl-main.start::after {
	opacity: .0;
}

.lcl-main .svg-box {
	width: 40vw;
	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: 23px;
	letter-spacing: 0.04em;
	visibility: hidden;
	font-weight: 700;
}
@media screen and (min-width: 800px){
	.lcl-main .svg-box p {font-size: 19px;}

}
@media screen and (min-width: 1024px){
	.lcl-main .svg-box p {font-size: 19px;}
}
@media screen and (min-width: 1200px){
	.lcl-main .svg-box p {font-size: 19px;}
}
@media screen and (min-width: 1400px){
	.lcl-main .svg-box p {font-size: 23px;}
		.open-vovo {width: 52vw;}
}
@media screen and (min-width: 1600px){ 
		.open-vovo {width: 52vw;}
}
@media screen and (min-width: 2000px){ 
		.open-vovo {width: 59vw;}
}
.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; 
}

.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%;
	}
}


/*共通*/
.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: 58px 0;
}

.lcl-box01-in {
	position: relative;
	z-index: 2;
	align-content: center;
}
.lcl-box01-left {
    width: 28%;
    margin-right: -80px;
    position: relative;
    padding-top: 0px;
    margin-top: -60px;
}


@media screen and (min-width: 800px){
.lcl-box01-left{width: 34%;}
}
@media screen and (min-width: 1024px){
.lcl-box01-left{width: 34%;}
}
@media screen and (min-width: 1300px){
.lcl-box01-left{width: 34%;}
}
@media screen and (min-width: 1350px){
.lcl-box01-left{width: 29%;}
}
@media screen and (min-width: 1380px){
.lcl-box01-left{width: 29%;}
}
@media screen and (min-width: 1400px){
.lcl-box01-left{width: 28%;}
}

.lcl-box01-left li{ width:100%;float: left;}
.lcl-box01-left li p { /* width: 100%; */ float: right; height: 2px ; width:129px ; }

.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:54px;
	display: inline-block;
	font-weight: 700;float: right; margin-right: 40px;
}

.lcl-box01__ttl::after {
    content: 'NEWS';
    font-size: 25px;
    color: #5397fc;
    /* letter-spacing: 0.15em; */
    position: absolute;
    bottom: -37px;
    right: 0px;
    margin: auto; 
    /* font-style: italic; */
    /* transform: skew(-11deg) rotate(-11deg); */
}
.lcl-box01__ttl2 {
    font-size: 16px;
    /* font-weight: 100; */
    margin-bottom: 30px;
    /* letter-spacing: 0.15em; */
    float: right;
    margin-right: 40px;
		    line-height:19px;
				border-bottom:1px solid #1f5ab2;
    padding-bottom: 12px;
    font-weight: 700;
    width: 298px;    padding-right: 43px;
}
.lcl-box01__ttl2::after {
    content: '最新';
    font-size: 15px;
    color: #ffffff;
    /* letter-spacing: 0.15em; */
    position: absolute;
    top: 85px;
    right: 44px;
    margin: auto;
    /* font-style: italic; */
    /* transform: skew(-11deg) rotate(-11deg); */
    font-weight: 700;
    background-color: #5397fc;
    padding: 5px;
}
.lcl-box01__ttl2 a{}
.lcl-box0k__ttlk {
    width: 38%;
    font-size: 15px;
    /* font-weight: 100; */
    /* margin-bottom: 30px; */
    /* letter-spacing: 0.15em; */
    float: right;
    /* margin-right: 40px; */
    line-height: 35px;
    /* border-top: 1px solid #1f5ab2; */
    /* padding-bottom: 12px; */
    margin-top: -31px;
}
.lcl-box01__txt {
    line-height: 30px;
    font-size: 15px;
    float: inherit;
    float: left;
    margin-bottom:15px;
}
.lcl-box01-left li a {
    float: left;width:200px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;
}
.lcl-box01-left p {
    margin-bottom:23px;
    float: left;
    /* height: 26px; */
    width: 122px;
}
.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: #1f5ab2;
	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% - 257px);
	height: 257px;
	overflow: hidden;
}

.slider img {
	max-width: none;
	min-height: 100%;
	max-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: 257px;
	width: 257px;
	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;
    background-color: #1f5ab2;
}
.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: #1f5ab2;
}

@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: 20px;
    letter-spacing: 0.1em;
    margin-bottom:42px;
    margin-top: 28px;
}

.lcl-box01__btn-in p {
    font-size: 16px;
    /* letter-spacing: 0.2em; */
    opacity: .5;
    width: 100%;
}

/*box02*/

.lcl-box02 {
	background: url(../img/box02/bg_01.jpg) center 50px /cover no-repeat scroll;
	height: 38vw;
	width: 100%;
	justify-content: center;/* 3 */
		align-items: center;    /* 4 */
}

@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: 2;
}

.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;
	font-weight: 700;
	width: 55%;
}

.lcl-box03__ttl::after { content: ' INDUSTRIAL SPACE'; font-size: 24px; color: #5397fc;position: absolute; bottom: -37px ; right: -74px; margin: auto;  /* letter-spacing: 0.15em; */ /* 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 {
	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:-110px;
	}
	.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: 220px;
	height: 330px;
	overflow: hidden;
}
.lcl-box03-item__img img{
	transition: .3s ease;    /* height: 100%; */;max-width: 239%;margin-left: -136px;
}
.lcl-box02-item__img img{
	transition: .3s ease;    /* height: 100%; */;max-width: 239%;margin-left: -136px;
}
.lcl-box01-item__img img{
	transition: .3s ease;    /* height: 100%; */;max-width: 239%;margin-left: -136px;
}
.lcl-box03-item:nth-child(1) .lcl-box03-item__img::before,
.lcl-box03-item:nth-child(2) .lcl-box03-item__img::before,
.lcl-box03-item:nth-child(3) .lcl-box03-item__img::before {
	content: "01";
	background-color: #1f5ab2;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
	width: 50px;
	position: absolute;
	left: 25px;
	top: -25px;
	z-index: 2;
	color: #fff;
}

.lcl-box03-item:nth-child(2) .lcl-box03-item__img::before {
	content: "02";
}

.lcl-box03-item:nth-child(3) .lcl-box03-item__img::before {
	content: "03";
}

.lcl-box03-item__btn {
	height: 120px;
	width: 220px;
	padding-left: 14px;
	padding-right: 28px;
	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::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-box03-item__btn.wh::after {
	color: #1f5ab2;
}

.lcl-box03__btn-in h3 {
font-size: 20px; letter-spacing: 0.1em; margin-bottom: 8px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 174px;
}

.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 {	height:90vw;
	}

	.lcl-main {
		height:90vw;
	}

	#cover {
		height: 90vw;
	}

	.lcl-main .svg-box {
		width: 90vw;
		height: 70px;
		right: 5vw;
		top: 0;
	}

	.lcl-main .svg-box p {
		font-size: 13px;
		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%;
		margin-top: 4px;
	}
	.lcl-box01-right {
		width: 100%;
	}

	.lcl-box01__ttl {
	    font-size: 30px;
	    letter-spacing: 0.05em;
	    position: relative;
	    line-height: 1.2;
			margin-bottom: 10px;
	    display: inline-block;
	    font-weight: 700;
			float: left;
	}

	.lcl-box01__ttl::after {
	    font-size: 20px;
	    bottom: 2px;
	    right: -68px;
	}

	.lcl-box01__ttl2 {
font-size: 18px; margin-bottom: 15px; /* letter-spacing: 0.15em; */ margin-right: 0px;border-bottom: 1 px solid #1f5ab2; padding-bottom: 0px; float: left; width: 100%; margin-bottom: 20px ; padding-bottom: 4px ;
	}
	.lcl-box01__ttl2::after {top: 40px; right: 0px;}
	.lcl-box0k__ttlk {
	    width: 25%;
	    /* font-size: 16px; */
	    /* font-weight: 100; */
	    /* margin-bottom: 30px; */
	    /* letter-spacing: 0.15em; */
	    float: right;
	    /* margin-right: 40px; */
	    /* line-height: 35px; */
	    /* border-top: 1px solid #1f5ab2; */
	    /* padding-bottom: 12px; */
	    margin-top: -19px;
	}
.lcl-box01-left li{ width:100%;float: left;}
.lcl-box01-left li p { /* width: 100%; */ float: right; height: 2px ; width: 82px ; }
	.lcl-box01__txt {
		line-height: 23px;
		font-size: 13px;margin-bottom: 15px;
	}
.lcl-box01-left li a {
    width: 245px;
}
	.lcl-box01-left p {
	    margin-bottom: 12px;
	    float: left;
	    height: 2px;
	    /* width: 122px; */
	}
	.lcl-box01__btn {
		height: 30vw;
		width: 100%;
		padding-left: 0;
		position: relative;
		transition: 0.3s ease;
	}

	.slider {
		width:100%;
		height: 51vw;
		overflow: hidden;
	}
.slider img {
	max-width: none;
	min-height: 104%; 
}
	.slide-box01 {
		margin-right: auto;
		margin-left: 50px;
		box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, 0.3);
	}
.lcl-box01__btn-in p {
    font-size: 13px;
    letter-spacing: 0.2em;
    opacity: .5;
    width: 100%;
}
	.lcl-box01__btn {
		height: 100px;
		width: 100%;
		padding-left: 20px;letter-spacing: -2.95em;
	}

	.lcl-box01__btn-in h3 {
		font-size: 17px;
		letter-spacing: 0.1em;
		margin-bottom: 6px;
    margin-top: -4px;letter-spacing: 1px;
	}

	.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:17px;
	}

	.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: 0px;
		    right: -95px;
	}

	.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: 100%;
		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__img img {
    transition: .3s ease;
    height: 119%;
    /* width: 100%; */
    margin-top: -42px;
}
	.lcl-box03-item:nth-child(1) .lcl-box03-item__img::before,
	.lcl-box03-item:nth-child(2) .lcl-box03-item__img::before,
	.lcl-box03-item:nth-child(3) .lcl-box03-item__img::before {
		font-size: 15px;
		line-height: 40px;
		width: 40px;
		left: 20px;
		top: -20px;
	}

	.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;
		font-weight: 700;
	}
}
