@charset "UTF-8";
/* CSS Document */


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

PC設定 1200px以上の場合に適用 

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

/* mv__index */
.mv__index {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	max-height: 1100px;
	background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),url("/img/index/bg_mv.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.mv__index-content {
	position: absolute;
	bottom: 150px;
	left: 5%;
}

.mv__index-h1 {
	font-size: 36px;
	font-weight: 500;
	color: #FFF;
	margin-bottom: 30px;
	line-height: 1.8;
}

.scrollDown {
	position: absolute;
	bottom: 5px;
	left: 50%;
}

.scrollDown span{
	position: absolute;
	left: -50px;
	top: -80px;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
	width: 100px;
	text-align: center;
}

.scrollDown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFF;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
	0%{bottom: 45px;}
	100%{bottom: -5px;}
 }

@keyframes cirlemovehide {
	0%{opacity: 0}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
 }

.scrollDown::after{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 50px;
	background: #FFF;
}



/* about */
.about {
	padding: 200px 0 140px 0;
	display: flex;
}

.about__left {
	width: calc(50% - 80px);
	display: flex;
	justify-content: flex-end;
	margin-right: 80px;
	padding-bottom: 50px;
}

.about__content {
	width: 95%;
	max-width: 600px;
}

.about__btn {
	margin-top: 40px;
}

.about__right {
	width: 50%;
	background-image: url("/img/index/bg_about.jpg");
	background-size: cover;
	background-position: center center;
}



/* service */
.service {
	text-align: center;
}

.service__box {
	width: 100%;
	display: flex;
}

.service__item {
	width: 50%;
	height: 550px;
	overflow: hidden;
}

.service__link {
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s;
}

.service__item:nth-of-type(1) .service__link {
	background: linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),url("/img/index/bg_service_01.jpg");
	background-size: cover;
	background-position: center center;
}

.service__item:nth-of-type(2) .service__link {
	background: linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),url("/img/index/bg_service_02.jpg");
	background-size: cover;
	background-position: center center;
}

.service__link:hover {
	-webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -o-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.service__h3 {
	font-size: 24px;
	color: #FFF;
	font-weight: 500;
}




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

タブレットの設定 960px~1199pxの場合に適用 

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

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


	
	
}



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

タブレットの設定 768px~959pxの場合に適用 

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

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

/* mv__index */
.mv__index-h1 {
	font-size: 28px;
}
	
}



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

SPの設定 767px以下の場合に適用 

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

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

/* mv__index */
.mv__index {
	height: 50vh;
	min-height: 400px;
	max-height: 700px;
}

.mv__index-content {
	position: absolute;
	bottom: 50px;
	left: 4%;
	width: auto;
}

.mv__index-h1 {
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	margin-bottom: 15px;
	line-height: 1.8;
}

.scrollDown {
	bottom: 3px;
	right: 5%;
	left: auto;
}

.scrollDown span{
	left: -40px;
	top: -32px;
	font-size: 10px;
	width: auto;
	text-align: left;
}

.scrollDown::before {
    left: -3px;
	width: 7px;
	height: 7px;
	animation:
		circlemove 1.5s ease-in-out infinite,
		cirlemovehide 1.5s ease-out infinite;
}

@keyframes circlemove {
	0%{bottom: 25px;}
	100%{bottom: -5px;}
 }

@keyframes cirlemovehide {
	0%{opacity: 0}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
 }

.scrollDown::after{
	height: 30px;
}

	
	
/* about */
.about {
	padding: 60px 0 80px 0;
	display: block;
}
	
.about__h2 {
	text-align: center;
}

.about__left {
	width: calc(100% - 40px);
	margin: 0 auto;
	padding-bottom: 0;
}

.about__btn {
	margin: 20px auto 0 auto;
}

.about__right {
	width: 50%;
	background-image: url("/img/index/bg_about.jpg");
	background-size: cover;
	background-position: center center;
}



/* service */
.service__box {
	width: 100%;
	display: block;
}

.service__item {
	width: 100%;
	height: 250px;
}

.service__link {
	padding: 0 20px;
}

.service__h3 {
	font-size: 18px;
}


	
	
	
}