@charset "utf-8";
/* CSS Document */
/*
デフォルト：980px以上用（PC用）の記述
@media screen and (max-width: 979px)
979px以下用（タブレット用）の記述

@media screen and (max-width: 767px)
767px以下用（タブレット／スマートフォン用）の記述

@media screen and (max-width: 479px)
479px以下用（スマートフォン用）の記述
*/
/* PV */
.pv{
	margin-top: 125px;
	width: 100%;
	overflow: hidden;
}
.pv__bgVideo{
	/*max-width:1150px;*/
	width:100%;
	right: 0;
	left:0;
}

.pv__bgVideo-video{
	width: 100%;
	height:auto;
	border: none;
	object-fit: cover;
}

@media (max-width: 768px) {
	.pv{
		margin-top: 95px;
	}
	.pv__bgVideo{
		height: auto;
	}

}
@media (max-width: 479px) {
	.pv{
		margin-top: 95px;
	}
}

/* SERVICES */
.services{
	margin-top: 75px;
	text-align: center;
}
.services__title{
	text-align: center;
	font-size: 35px;
	border-bottom: 14px #ffcb00 solid;
	display: inline-block;
	margin: auto;
	line-height: 1;
	letter-spacing: 5px;
}
.services__serviceWrapper{
	max-width: 915px;
	width: 95%;
	margin: 45px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.service{
	width: calc(25% - 10px);
	box-sizing: border-box;
	cursor: pointer;
}
.service:hover{
	opacity: 0.7;
}
.service__figure{
	position: relative;
	font-size: 0;
}
.service__image{
	width: 100%;
}
.service__name{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: rgb(0, 0, 0,0.7);
	width: 100%;
	color: #ffffff;
	font-size: 18px;
}
.service__detail{
	font-size: 12px;
	color:#ffffff;
	background-color: #4A6987;
	padding: 20px;
	line-height: 1.8;
	height: 100px;
	text-align: left;
}

@media (max-width: 767px) {
	.service{
		width: calc(50% - 20px);
		box-sizing: border-box;
		margin-bottom: 35px;
	}
	.services__title{
		font-size: 30px;
		border-bottom: 11px #ffcb00 solid;
	}
}
@media (max-width: 479px) {
	.services__title{
		font-size: 25px;
		border-bottom: 7px #ffcb00 solid;
	}
	.service{
		width: calc(90% - 20px);
		box-sizing: border-box;
		margin: 0 auto 35px auto;
	}
}



/* NEWS */
.news{
	margin-top: 75px;
	text-align: center;
	background-color: #F3F3F3;
	padding: 75px 0;
}
.news__title{
	text-align: center;
	font-size: 35px;
	border-bottom: 14px #ffcb00 solid;
	display: inline-block;
	margin: auto;
	line-height: 1;
	letter-spacing: 5px;
}
.news__list{
	max-width: 915px;
	width: 95%;
	margin: 45px auto;
}
.news__detail{
	width: 100%;
	display: table;
	margin-bottom: 15px;
	background-color: #ffffff;
}
.news__info{
	display:table-cell;
	text-align: left;
	padding: 15px;

}
.news__info--asDate{
	width:100px;
	font-size: 14px;
}
.news__info--asCategory{
	width:100px;
	font-size: 12px;
}
.news__info--asTitle{
	font-size: 16px;
}
.news__categoryWrapper{
	background-color: #2f4050;
	color: #ffffff;
	padding: 5px 15px;
	border-radius: 15px;
}
.news__moreOuter{
	max-width: 915px;
	width: 95%;
	background-color: red;
	margin: auto;
}
.news__more{
	border:2px #000000 solid;
	padding: 5px 75px;
	float: right;
}

@media (max-width: 767px) {
	.news__title{
		font-size: 30px;
		border-bottom: 11px #ffcb00 solid;
	}
	.news__info{
		padding: 5px 15px;
	}
	.news__detail{
		display: flex;
		flex-wrap: wrap;
	}
	.news__info--asDate,.news__info--asCategory{
		margin-top: 15px;
	}
	.news__info--asTitle{
		padding: 15px;
	}
}

@media (max-width: 479px) {
	.news__title{
		font-size: 25px;
		border-bottom: 7px #ffcb00 solid;
	}

}


/* WORKS */
.works{
	padding: 75px 0;
	text-align: center;
	background-image: url('/assets/images/index/works_bg.jpg');
	background-position: center bottom;
	background-size: cover;
}

.works__title{
	text-align: center;
	font-size: 35px;
	border-bottom: 14px #ffcb00 solid;
	display: inline-block;
	margin: auto;
	line-height: 1;
	letter-spacing: 5px;
}

.works__workOuter{
	display: flex;
	max-width: 915px;
	width: 95%;
	margin: 45px auto;
	flex-wrap: wrap;
	justify-content: space-between;
}
.work{
	width: calc(100% / 3 - 15px);
	background: white;
	margin-top: 15px;
	cursor: pointer;
}
.work:hover{
	opacity: 0.7;
}
.work__image{
	width: 100%;
}
.work__caption{
	padding: 10px;
	text-align: left;
}
.work__categoryWrapper{
	width: auto;
	display: flex;
	flex-wrap: wrap;
	margin: 0 7px;
	font-size: 12px;
}
.work__category{
	margin: 5px 3px;
	border:1px solid #000000;
	padding: 5px 5px;
}
.works__moreOuter{
	max-width: 915px;
	width: 95%;
	background-color: red;
	margin: auto;
}
.works__more{
	border:2px #000000 solid;
	padding: 5px 75px;
	float: right;
}
@media (max-width: 767px) {
	.works__title{
		font-size: 30px;
		border-bottom: 11px #ffcb00 solid;
	}
	.work{
		width: calc(100% / 2 - 15px);
	}
}

@media (max-width: 479px) {
	.works__title{
		font-size: 25px;
		border-bottom: 7px #ffcb00 solid;
	}
	.work{
		width: calc(100% - 15px);
		margin: 0 auto 25px auto;
	}
}



/* WORKFLOW */
.workflow{
	padding: 75px 0;
	text-align: center;
	background-color: #ffffff;
	overflow: hidden;
}
.workflow__title{
	text-align: center;
	font-size: 35px;
	border-bottom: 14px #ffcb00 solid;
	display: inline-block;
	margin: 0 auto 35px auto;
	line-height: 1;
	letter-spacing: 5px;
}
.workflow__subtitle{
	display: block;
	font-size: 25px;
	font-weight: normal;
	margin: 15px 0 10px 0;
}

.workflow__outer{
	max-width: 915px;
	width: 95%;
	margin: 25px auto;
	position: relative;
	border: 1px solid #2f4050;
	height: 232px;
}
.workflow__header{
	position: absolute;
	background-color: #2f4050;
	color:#ffffff;
	padding: 5px 15px;
	width: 325px;
	left: -1px;
	top: -25px;
	text-align: left;
	letter-spacing: 5px;
}
.workflow__number{
	background-color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	width:45px;
	height: 45px;
	color: #2f4050;
	border-radius: 23px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	margin-right: 15px;
}
.workflow__detail{
	display: table;
	height: 100%;
}
.workflow__icon{
	width: 200px;
	padding-top: 35px;
	display: table-cell;
	height: 100%;
}
.workflow__image{
	width: 95%;
}
.workflow__imageSmall{
	width: 65%;
	margin-top: 30px;
}
.workflow__explanation{
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	padding-right: 45px;
}
.workflow__separator{
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 30px solid #CD000E;
	margin: 35px auto;
}

@media (max-width: 767px) {
	.workflow__title{
		font-size: 30px;
		border-bottom: 11px #ffcb00 solid;
	}
	.workflow__subtitle{
		font-size: 20px;
	}
}
@media (max-width: 590px) {
	.workflow__outer{
		height: auto;
		position:unset;
	}
	.workflow__header{
		position:unset;
	}
	.workflow__detail{
		display: block;
		height: auto;
		overflow: hidden;
	}
	.workflow__icon{
		display: block;
		width: 50%;
		margin: auto;
		padding-top: 5px;
	}
	.workflow__explanation{
		display: block;
		width: 85%;
		margin: auto;
		padding: 0 0 35px 0;
	}
}

@media (max-width: 479px) {
	.workflow__title{
		font-size: 25px;
		border-bottom: 7px #ffcb00 solid;
	}
	.workflow__subtitle{
		font-size: 18px;
	}
	.workflow__icon{
		display: block;
		width: 75%;
		margin: auto;
		padding-top: 5px;
	}
}


/* FEATURES */
.features{
	padding: 75px 0;
	text-align: center;
	background-color: #2f4050;
	overflow: hidden;
}
.features__title{
	text-align: center;
	font-size: 35px;
	border-bottom: 14px #ffcb00 solid;
	display: inline-block;
	margin: 0 auto 35px auto;
	line-height: 1;
	letter-spacing: 5px;
	color:#ffffff;
}
.features__featureWrapper{
	max-width:700px;
	width:95%;
	margin: auto;
	padding: 55px 0;
}
.feature{
	padding: 35px;
	border:1px #ffffff solid;
	margin-bottom: 75px;
}
.feature__title{
	color: #ffffff;
	font-size: 26px;
	margin-bottom: 35px;
}
.feature__image{
	width: 100%;
}
.feature__detail{
	color: #ffffff;
	text-align: left;
	margin: 25px 0;
	font-size: 17px;
	line-height: 2;
}
.feature__link:link,.feature__link:visited{
	text-decoration: underline;
}


@media (max-width: 767px) {
	.features__title{
		font-size: 30px;
		border-bottom: 11px #ffcb00 solid;
	}
}

@media (max-width: 479px) {
	.features {
		padding: 75px 0 0 0;
	}
	.features__title{
		font-size: 25px;
		border-bottom: 7px #ffcb00 solid;
	}
	.features__featureWrapper{
		padding: 25px 0;
	}
}

/* PICKUPS */
.pickups{
	padding: 75px 0;
	text-align: center;
	background-color: #e7e4da;
	overflow: hidden;
}
.pickups__title{
	text-align: center;
	font-size: 35px;
	border-bottom: 14px #ffcb00 solid;
	display: inline-block;
	margin: 0 auto 35px auto;
	line-height: 1;
	letter-spacing: 5px;
	color:#000000;
}
.pickups__list{
	max-width: 1005px;
	width: 95%;
	margin: auto;
}
.pickups__banner{

}
.pickups__link{
	background-color: #ffffff;
	margin-bottom: 25px;
	width: 100%;
}
.pickups__link:hover{
	opacity: 0.7;
}

@media (max-width: 767px) {
	.pickups__title{
		font-size: 30px;
		border-bottom: 11px #ffcb00 solid;
	}
}

@media (max-width: 479px) {
	.pickups__title{
		font-size: 25px;
		border-bottom: 7px #ffcb00 solid;
	}
}