@charset "utf-8";

/* -------------------------------------------------------------common ---- */
/* ---------------------------------------------------------------- main ---- */
.block-main-wrp{background: url(../img/bg_01.jpg) center top /cover no-repeat;}

.block-main-inner{}

.block-main__ttl{
	width: 665.5px;
	height: 58.5px;
	background: url(../img/ttl_01.png) center /100% no-repeat;
}

/* ---------------------------------------------------------------- title ---- */

.lcl-box__ttl{
	font-size: 26px;
	letter-spacing: 0.05em;
	font-weight: bold;
	position: relative;
	margin-bottom: 32px;
	text-align: center;
}

.lcl-box__ttl:after{
	content: '';
	width: 60px;
	height: 5px;
	position: relative;
	display: block;
	margin: 20px auto 0;
}

/* --------------------------------------------------------------- box01 ---- */
.lcl-box01 {
	width: 100%;
	background-color: #f7f7f7;
	padding: 100px 0 70px;
}

.lcl-box01__inner {
	width: 1000px;
	margin: auto;
}

.lcl-box01__ttl {
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 22px;
}

.lcl-box01__ttl::before {
	position: absolute;
	right: 0;
	left: 0;
	top: -50px;
	background: url(../img/icon_01.png) center top /100% auto no-repeat;
	width: 45px;
	height: 38.5px;
	margin: 0 auto;
	content: '';
}

.lcl-box01__flow {
	position: relative;
	width: 100%;
}

.lcl-box01__bars {
	align-items: flex-end;
}

.lcl-box01__bar {
	position: relative; 
}

.lcl-box01__icon {
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
}


/* --------------------------------------------------------------- box02 ---- */

.lcl-box02{
	padding: 100px 0 60px;
}

.lcl-box02__ttl {
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 22px;
}

.lcl-box02__ttl::before {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	top: -50px;
	background: url(../img/icon_02.png) center top /100% auto no-repeat;
	width: 45px;
	height: 32.5px;
	margin: 0 auto;
}

.lcl-box02{}

.lcl-box02-item{
	width: 250px;
	height: 250px;
	/*padding-top: 25%;*/
	position: relative;
}

.lcl-box02-item--01{background: url(../img/works_01.jpg) center /cover no-repeat;}
.lcl-box02-item--02{background: url(../img/works_02.jpg) center /cover no-repeat;}
.lcl-box02-item--03{background: url(../img/works_03.jpg) center /cover no-repeat;}
.lcl-box02-item--04{background: url(../img/works_04.jpg) center /cover no-repeat;}

.lcl-box02-item:before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 143px 143px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	-ms-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	z-index: 1;
}

.lcl-box02-item.lcl-box02-item--01:before{border-color: rgba(0, 117, 142, 0.7) transparent transparent transparent;}
.lcl-box02-item.lcl-box02-item--02:before{border-color: rgba(229, 59, 113, 0.7) transparent transparent transparent;}
.lcl-box02-item.lcl-box02-item--03:before{border-color: rgba(235, 98, 0, 0.7) transparent transparent transparent;}
.lcl-box02-item.lcl-box02-item--04:before{border-color: rgba(144, 203, 82, 0.7) transparent transparent transparent;}

.lcl-box02-item:after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 50px 50px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}

.lcl-box02-item.lcl-box02-item--01:after{border-color: transparent transparent rgba(0, 117, 142, 0.7) transparent;}
.lcl-box02-item.lcl-box02-item--02:after{border-color: transparent transparent rgba(229, 59, 113, 0.7) transparent;}
.lcl-box02-item.lcl-box02-item--03:after{border-color: transparent transparent rgba(235, 98, 0, 0.7) transparent;}
.lcl-box02-item.lcl-box02-item--04:after{border-color: transparent transparent rgba(144, 203, 82, 0.7) transparent;}

.lcl-box02-item__ttl{
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	top: 8px;
	left: 15px;
	line-height: 30px;
}

.lcl-box02-item__link{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.lcl-box02-item__arw{
    content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	position: absolute;
	bottom: 11px;
	right: 11px;
	z-index: 1;
}

@media screen and (min-width: 768px){
	.lcl-box02-item:hover::before{
		width: 100%;
		height: 100%;
		-ms-transition: 0.3s ease;
		-webkit-transition: 0.3s ease;
		transition: 0.3s ease;
		border: transparent;
	}

	.lcl-box02-item.lcl-box02-item--01:hover::before{background-color: rgba(0, 117, 142, 0.7);}
	.lcl-box02-item.lcl-box02-item--02:hover::before{background-color: rgba(229, 59, 113, 0.7);}
	.lcl-box02-item.lcl-box02-item--03:hover::before{background-color: rgba(235, 98, 0, 0.7);}
	.lcl-box02-item.lcl-box02-item--04:hover::before{background-color: rgba(144, 203, 82, 0.7);}

}

/* ---------------------------------------------------------------- box02 ---- */
.lcl-worksbox-wrp {
    padding-bottom: 30px;
}

.lcl-worksbox {padding-bottom: 70px;}

.lcl-worksbox-main{
	width: 100%;
	height: 350px;
}

.lcl-worksbox-main-half{width: 50%;height: 100%;display: inline-block;}
.lcl-worksbox-main__img{width: 100%;height: 100%;position: relative;}
.lcl-worksbox-main__icon{display: block;margin-bottom: 30px;}

.lcl-worksbox-main__img__ttl{position: absolute;top: 46px;}

.lcl-worksbox-main-half__ttl{
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 28px;
	font-weight: bold;
	margin-bottom: 20px;
}

.lcl-worksbox:nth-child(odd) .lcl-worksbox-main .lcl-worksbox-main-half:nth-child(even) .lcl-worksbox-main-half-inner{
	padding: 35px 0 0 40px;
	width: 500px;
	float: left;
}

.lcl-worksbox:nth-child(even) .lcl-worksbox-main .lcl-worksbox-main-half:nth-child(even) .lcl-worksbox-main-half-inner{
	padding: 35px 0 0 0;
	width: 500px;
	float: right;
}

.lcl-worksbox:nth-child(even) .lcl-worksbox-main{-webkit-flex-direction: row-reverse;-ms-flex-direction: row-reverse;flex-direction: row-reverse;}

/* 名前の左右 */
.lcl-worksbox:nth-child(odd) .lcl-worksbox-main .lcl-worksbox-main__img__ttl{right: 30px;}
.lcl-worksbox:nth-child(even) .lcl-worksbox-main .lcl-worksbox-main__img__ttl{left: 30px;}

.lcl-worksbox-main-half-list__item{font-size: 15px;line-height: 23px;}
.lcl-worksbox-main-half-list__item:not(:last-child){margin-bottom: 10px;}

/**/
.lcl-worksbox-list{
	-webkit-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;
	margin: 50px auto 45px;
}

.lcl-worksbox-list__item{
	width: 320px;
	display: inline-block;
	position: relative;
	font-size: 13px;
	line-height: 23px;
}

.lcl-worksbox-list__item__ttl{
	width: 250px;
	height: 40px;
	line-height: 40px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	position: relative;
    top: -20px;
}

.lcl-worksbox-daily{
	width: 1000px;
	height: 410px;
	margin-left: auto;
	margin-right: auto;
}

/* 01 */
.lcl-worksbox--01 .lcl-worksbox-main-half{background-color: #e5f1f3;}
.lcl-worksbox--01 .lcl-worksbox-main__img{background: url(../img/works_01_img01.jpg?170302) center /cover no-repeat;}
.lcl-worksbox--01 .lcl-worksbox-main__icon{width: 181px;height: 52px;background: url(../img/works_icon_01.png) center /100% no-repeat;}
.lcl-worksbox--01 .lcl-worksbox-main__img__ttl{width: 135px;height: 124.5px;background: url(../img/works_01_ttl.png) center /100% no-repeat;}

.lcl-worksbox--01 .lcl-worksbox-list__item__ttl{background-color: #00758e;}
.lcl-worksbox--01 .lcl-worksbox-daily{background: url(../img/works_01_img05.jpg) center /100% no-repeat;}

/* 02 */
.lcl-worksbox--02 .lcl-worksbox-main-half{background-color: #fce5ed;}
.lcl-worksbox--02 .lcl-worksbox-main__img{background: url(../img/works_02_img01.jpg?170302) center /cover no-repeat;}
.lcl-worksbox--02 .lcl-worksbox-main__icon{width: 181px;height: 56px;background: url(../img/works_icon_02.png) center /100% no-repeat;}
.lcl-worksbox--02 .lcl-worksbox-main__img__ttl{width: 166.5px;height: 125px;background: url(../img/works_02_ttl.png) center /100% no-repeat;}

.lcl-worksbox--02 .lcl-worksbox-list__item__ttl{background-color: #e95383;}
.lcl-worksbox--02 .lcl-worksbox-daily{background: url(../img/works_02_img05.jpg) center /100% no-repeat;}

/* 03 */
.lcl-worksbox--03 .lcl-worksbox-main-half{background-color: #fce9d9;}
.lcl-worksbox--03 .lcl-worksbox-main__img{background: url(../img/works_03_img01.jpg) center /cover no-repeat;}
.lcl-worksbox--03 .lcl-worksbox-main__icon{width: 206.5px;height: 58.5px;background: url(../img/works_icon_03.png) center /100% no-repeat;}
.lcl-worksbox--03 .lcl-worksbox-main__img__ttl{width: 156px;height: 124.5px;background: url(../img/works_03_ttl.png) center /100% no-repeat;}

.lcl-worksbox--03 .lcl-worksbox-list__item__ttl{background-color: #ed6c00;}
.lcl-worksbox--03 .lcl-worksbox-daily{background: url(../img/works_03_img05.jpg) center /100% no-repeat;}

/* 04 */
.lcl-worksbox--04 .lcl-worksbox-main-half{background-color: #eef7e5;}
.lcl-worksbox--04 .lcl-worksbox-main__img{background: url(../img/works_04_img01.jpg) center /cover no-repeat;}
.lcl-worksbox--04 .lcl-worksbox-main__icon{width: 329px;height: 54px;background: url(../img/works_icon_04.png) center /100% no-repeat;}
.lcl-worksbox--04 .lcl-worksbox-main__img__ttl{width: 196.5px;height: 124.5px;background: url(../img/works_04_ttl.png) center /100% no-repeat;}

.lcl-worksbox--04 .lcl-worksbox-list__item__ttl{background-color: #90cb52;}
.lcl-worksbox--04 .lcl-worksbox-daily{background: url(../img/works_04_img05.jpg) center /100% no-repeat;}



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

	.block-main__ttl {
		width: 300.5px;
		height: 25.5px;
		margin-right: auto;
		margin-left: auto;
	}
	/* ------------------------------------------------------------ /common ---- */

	/* --------------------------------------------------------------- box01 ---- */

	.lcl-box01 {padding: 35px 0;}
	.lcl-box01__inner {
		box-sizing: border-box;
		width: 100%;
		padding: 0 15px;
	}

	.lcl-box01__ttl {
		font-size: 15px;
		margin-top: 30px;
	}

	.lcl-box01__ttl::before {
		top: -40px;
		transform: scale(0.7);
	}

	.lcl-box01__flow {
		background-repeat: repeat;
		width: 290px;
		margin: 20px auto 0;
	}

	.lcl-box01__items {
		width: 100%;
	}

	.lcl-box01__items > *:nth-child(2n+1) {
		background: #f0f0f0;
	}

	.lcl-box01__item-outer {
		width: 100%;
		height: 50px;
	}

	.lcl-box01__item {
		height: 100%;
	}

	.lcl-box01__bars {
		position: absolute;
		top: 0;
		right: 10px;
	}

	.lcl-box01__bars > *:not(:last-child) {
		margin-right: 5px;
	}

	.lcl-box01__bar {
		position: relative;
		box-sizing: content-box;
		width: 31px;
		background-position: center;
		background-repeat: no-repeat; 
		background-size: 21px 100%;
	}

	.lcl-box01__bar--01 {
		height: 304px;
		background-image: url(../img/sp/flow_bar_01.png);
	}

	.lcl-box01__bar--02 {
		height: 203px;
		background-image: url(../img/sp/flow_bar_02.png);
	}

	.lcl-box01__bar--03 {
		height: 152px;
		background-image: url(../img/sp/flow_bar_03.png);
	}

	.lcl-box01__bar--04 {
		height: 303.5px;
		background-image: url(../img/sp/flow_bar_04.png);
	}

	.lcl-box01__icon {
    z-index: 3;
	}

	.lcl-box01__icon--01 {
		bottom: 235px
	}

	.lcl-box01__icon--02 {
		bottom: 130px;
	}

	.lcl-box01__icon--03 {
		bottom: 55px;
	}

	.lcl-box01__icon--04 {
		bottom: 150px;
	}


	.lcl-box01__btn {
		display: block;
		width: 290px;
		margin: 15px auto 0;
	}

	/* --------------------------------------------------------------- box02 ---- */
	.lcl-box02 {padding: 64px 0 25px;}

	.lcl-box02__ttl::before {top: -40px;transform: scale(0.7);}
	.lcl-box02__ttl{font-size: 15px;}

	.lcl-box02-list {
		padding: 0 15px 0;
		display: block;
		font-size: 0;
	}
	.lcl-box02-item {
		width: 50%;
		padding-top: 50%;
		height: auto;
		height: auto;
		display: inline-block;
	}

	.lcl-box02-item:before {border-width: 83px 83px 0 0;}
	.lcl-box02-item:after{border-width: 0 0 28px 28px;}

	.lcl-box02-item__ttl{
		font-size: 12px;
		line-height: 1em;
		left: 8px;
	}

	.lcl-box02-item__arw {
		width: 5px;
		height: 5px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		bottom: 5px;
		right: 5px;
	}

	/**/
	.lcl-worksbox-wrp {padding-bottom: 0;}
	.lcl-worksbox {padding-bottom: 27.5px;}

	.lcl-worksbox-main {
		width: 100%;
		height: auto;
		flex-direction: column;
	}

	.lcl-worksbox-main-half {
		width: 100%;
		height: 100%;
		display: block;
	}

	.lcl-worksbox-main__img {height: 175px;}

	.lcl-worksbox-main-half__ttl {
		font-size: 14px;
		letter-spacing: 0.015em;
		line-height: 23px;
		margin-bottom: 10px;
	}

	.lcl-worksbox:nth-child(odd) .lcl-worksbox-main .lcl-worksbox-main-half:nth-child(even) .lcl-worksbox-main-half-inner,
	.lcl-worksbox:nth-child(even) .lcl-worksbox-main .lcl-worksbox-main-half:nth-child(even) .lcl-worksbox-main-half-inner {
		padding: 15px 20px 20px;
		width: 100%;
		float: none;
	}

	.lcl-worksbox-main__icon {margin-bottom: 10px;}
	.lcl-worksbox-main-half-list__item {font-size: 12px;line-height: 20px;}

	.lcl-worksbox-main-half-list__item {
		font-size: 12px;
		line-height: 20px;
		padding-left: 1em;
		text-indent: -1em;
	}

	.lcl-worksbox-main-half-list__item:not(:last-child) {margin-bottom: 7px;}

	.lcl-worksbox-main__img__ttl {top: 20px;}
	.lcl-worksbox:nth-child(even) .lcl-worksbox-main .lcl-worksbox-main__img__ttl {left: 15px;}
	.lcl-worksbox:nth-child(odd) .lcl-worksbox-main .lcl-worksbox-main__img__ttl {right: 15px;}

	/*  */
	.lcl-worksbox--01 .lcl-worksbox-main__img__ttl {width: 75px;height: 69px;}
	.lcl-worksbox--01 .lcl-worksbox-main__icon {width: 121px;height: 35px;}
	/*  */
	.lcl-worksbox--02 .lcl-worksbox-main__img__ttl {width: 84px;height: 63px;}
	.lcl-worksbox--02 .lcl-worksbox-main__icon {width: 120px;height: 37px;}
	/*  */
	.lcl-worksbox--03 .lcl-worksbox-main__img__ttl {width: 104px;height: 85px;}
	.lcl-worksbox--03 .lcl-worksbox-main__icon {width: 127px;height: 36px;}
	/*  */
	.lcl-worksbox--04 .lcl-worksbox-main__img__ttl {width: 103px;height: 63px;}
	.lcl-worksbox--04 .lcl-worksbox-main__icon {width: 226px;height: 37px;}

	/*   */

	.lcl-worksbox-list {
		margin: 20px auto 0;
		flex-direction: column;
		padding: 0;
	}

	.lcl-worksbox-list__item {
		width: 100%;
		display: block;
		position: relative;
		font-size: 12px;
		line-height: 20px;
		padding: 0 15px 0;
	}

	.lcl-worksbox-list__item__img {width: 100%;}

	.lcl-worksbox-list__item__ttl {
		width: 100%;
		height: 30px;
		line-height: 30px;
		font-size: 13px;
		top: 0;
		letter-spacing: 0.025em;
	}

	.lcl-worksbox-list__item__txt{margin: 10px 0 20px;}

	.lcl-worksbox-daily{
		width: calc(100% - 30px );
		height: 0;
		padding-top: 134%;
	}

	.lcl-worksbox--01 .lcl-worksbox-daily {background: url(../img/sp/works_01_img05.jpg) center /100% no-repeat;}
	.lcl-worksbox--02 .lcl-worksbox-daily {background: url(../img/sp/works_02_img05.jpg) center /100% no-repeat;}
	.lcl-worksbox--03 .lcl-worksbox-daily {background: url(../img/sp/works_03_img05.jpg) center /100% no-repeat;}
	.lcl-worksbox--04 .lcl-worksbox-daily {background: url(../img/sp/works_04_img05.jpg) center /100% no-repeat;}
}

@media screen and (min-width: 768px){
	/* --------------------------------------------------------------- box01 ---- */
	.lcl-box01__flow {
		align-items: flex-start;
		position: relative;
		width: 100%;
		background: url(../img/flow_01.png) top right no-repeat;
	}


	.lcl-box01__item-outer {
		height: 124px;
	}

	.lcl-box01__items {
		width: 500px;
	}

	.lcl-box01__bars > *:not(:last-child) {
		margin-right: 25px;
	}

	.lcl-box01__bar {
		background-repeat: no-repeat;
		background-position: bottom 15px right 0;
		/* height: image-height + 15px */
	}

	.lcl-box01__bar-text-outer {
		display: none;
	}

	.lcl-box01__bar--01 {
		background-image: url(../img/flow_bar_01.png);
		height: 732px;
		width: 90px;
		background-size: 80px 717px;
		background-position: right top;
	}

	.lcl-box01__bar--02 {
		background-image: url(../img/flow_bar_02.png);
		height: 610px;
		width: 90px;
		background-size: 80px 595px;
		background-position: right top;
	}

	.lcl-box01__bar--03 {
		background-image: url(../img/flow_bar_03.png);
		height: 365px;
		width: 90px;
		background-size: 80px 350px;
		background-position: right top;
	}

	.lcl-box01__bar--04 {
		background-image: url(../img/flow_bar_04.png);
		height: 731px;
		width: 120px;
		background-size: 110px 716px;
		background-position: right top;
	}

	.lcl-box01__icon--01 {
		height: 55px;
		bottom: 637px;
	}

	.lcl-box01__icon--02 {
		height: 56px;
		bottom: 514px;
	}

	.lcl-box01__icon--03 {
		height: 59px;
		bottom: 266px;
	}

	.lcl-box01__icon--04 {
		height: 54px;
		bottom: 637px;
	}

	.lcl-box01__btn {
		/*margin-top: 20px;*/
	}

	/* --------------------------------------------------------------- box02 ---- */

}
