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


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

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

*******************************************************/
/* mvIndex */
.mvIndex {
	width: 100%;
	height: calc(100vh - 80px);
	margin-top: 80px;
	position: relative;
	background-image: url(/img/index/bg.jpg);
	background-position: top center;
  background-size: cover;
}

.mvIndex__box {
	padding-top: 320px;
	z-index: 100;
	line-height: 2;
}

.mvIndex__ttl {
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}

.mv__btn {
	margin: 25px 0 0 0;
}

/* news */
.news {
	display: flex;
	flex-wrap: wrap;
}

.news__ttl {
	color: #000;
	margin-bottom: 30px;
	text-align: center;
}

.news__box {
	display: flex;
	flex-wrap: wrap;
}

.post__item {
	width: 23.5%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .6);
  margin-bottom: 50px;
  margin-right: 2%;
}

.post__item:nth-child(4n) {
	margin-right: 0;
	}

.post__thumbnail {
	width: 100%;
  height: 270px;
	position: relative;
	display: block;
	transition: .2s;
	overflow: hidden;
	border-top-left-radius: 15px;
  border-top-right-radius: 15px;
	}

.post__thumbnail::before {
	display: block;
	content: "";
	padding-top: 56.25%;
}

.post__thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
	-webkit-transition: .2s;
	border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.post__thumbnail img:hover {
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
	opacity: .8;
	}

.post__h3 {
	width: 100%;
	padding: 25px 25px 0 25px;
	font-size: 16px;
	font-weight: 600;
}

.post__h3 a:hover {
	color: #FF9B00;
	}

.post__date {
	width: 100%;
	padding: 25px;
	font-size: 14px;
	color: #A9A9A9;
}

.news__btn {
	margin: 0 auto;
	border: 1px solid #000;
}

.news__btn.sp {
	display: none;
}

/* service */

.service__right {
	width: 75%;
	height: 640px;
	background-image: url(/img/index/bg_service.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.service__left {
	width: 42%;
	border-radius: 20px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .6);
	padding: 70px;
	margin-left: 150px;
	margin-top: -130px;
	background-color: #fff;
}

.service__text {
	margin-top: 40px;
}

.service__btn {
	margin: 40px 0 0 0;
	border: 1px solid #000;
}

/* cars */
.cars__box {
	width: 100%;
	height: 740px;
	background-image: url(/img/index/bg_cars.jpg);
	background-size: cover;
	background-position: center center;
}

.cars__box-u {
	margin-top: -103px;
	border-radius: 27px;
	box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.6);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	flex-direction: row-reverse;
	align-items: center;
	padding: 60px 80px 75px 60px;
	background-color: #fff;
}

.cars__item01 {
	width: 40%;
}

.cars__item02 {
	width: 40%;
}

.cars__img {
	width: 100%;
}

.cars__text {
	margin-top: 40px;
}

.cars__btn {
	margin: 40px 0 0 0;
}

/* flexContainer */
.flexContainer__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 120px;
}

.flow__box {
	width: 48%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/index/bg_flow.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
	padding: 70px 60px;
	border-radius: 18px;
}

.flow__ttl {
	color: #fff;
}

.flow__text {
	color: #fff;
	margin-top: 40px;
}

.flow__btn {
	margin: 50px 0 0 0;
}

.about__box {
	width: 48%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/index/bg_about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
	padding: 70px 60px;
	border-radius: 18px;
}

.about__ttl {
	color: #fff;
}

.about__text {
	color: #fff;
	margin-top: 40px;
}

.about__btn {
	margin: 50px 0 0 0;
}




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

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

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

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

.service__left {
	margin-left: 28px;
}


}

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

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

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

@media screen and (max-width: 959px){
.mvIndex {
	margin-top: 60px;
	height: calc(100vh - 70px);
}

.mvIndex__box {
	padding-top: 300px;
}

/* news */
.news__box {
	width: 100%;
	margin: 60px auto;
}

.news__btn.pc {
	display: none;
}

.news__btn.sp {
	display: flex;
	margin: 0 auto;
}

/* service */
.service__right {
	width: 100%;
	height: 350px;
}

.service__left {
	width: calc(100% - 40px);
	margin-top: -30px;
	margin-left: 20px;
	padding: 30px;
	text-align: center;
}

.service__text {
	margin-top: 30px;
}

.service__btn {
	margin: 30px auto 0;
}

/* cars */
.cars__box {
	height: 350px;
}

.cars__box-u {
	padding: 30px;
	margin-top: -30px;
}

.cars__item01 {
	width: 100%;
}

.cars__item02 {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.cars__text {
	margin-top: 30px;
}

.cars__btn {
	margin: 30px auto 0;
}

}

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

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

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

@media screen and (max-width: 767px){
.pc {
	display: none;
}	
	
.sp {
	display: block;
	}

.mvIndex {
  height: 224px;
}

.mvIndex__box {
  bottom: 30px;
  width: auto;
}

.mvIndex__ttl {
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
}

.mvIndex__sp {
	text-align: center;
	margin-bottom: 30px;
  margin-top: 10px;
}

.mvIndex__ttl-sp {
	font-size: 20px;
	font-weight: bold;
}

.mv__btn-sp {
	margin-top: 25px;
}

/* news */
.news {
	background-color: #F9F6F2;
	padding-bottom: 50px;
	padding-top: 60px;
}

.news__box{
	width: calc(100% - 40px);
	margin: 30px auto;
}

.news__btn.sp {
	display: block;
}

.post__item {
	width: 100%;
	margin-bottom: 30px;
	padding-bottom: 0;
	border-radius: 12px;
}

.post__thumbnail {
	width: 50%;
	height: auto;
	border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.post__thumbnail img {
  border-top-right-radius: 0;
	border-bottom-left-radius: 12px;
	border-top-left-radius: 12px;
}

.post__content {
	width: 50%;
	border-bottom-left-radius: 0;
  border-top-right-radius: 12px
}

.post__h3 {
	font-size: 14px;
	padding: 20px 20px 0 20px;
}

.post__date {
	font-size: 12px;
	margin-top: 55px;
	padding: 20px;
}

/* service */
.service {
	padding-top: 0;
}

.service__right {
	width: 100%;
	height: 225px;
}

.service__left {
	border-radius: 12px;
}

/* cars */
.cars__box {
	height: 195px;
}

.cars__box-u {
	border-radius: 12px;
}

/* flexContainer */
.flexContainer {
	padding-top: 0;
}

.flexContainer__wrapper {
	margin-bottom: 0;
}

.flow__box {
	width: 100%;
	margin-bottom: 30px;
	padding: 30px;
	text-align: center;
	border-radius: 12px;
}

.flow__text {
	margin-top: 30px;
}

.flow__btn {
	margin: 25px auto 0;
}

.about__box {
	width: 100%;
	padding: 30px;
	text-align: center;
	border-radius: 12px;
}

.about__text {
	margin-top: 30px;
}

.about__btn {
	margin: 25px auto 0;
}

}