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


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

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

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

/* mvTop */
.mvTop {
	margin-top: 180px;
	width: 100%;
	height: 754px;
	background-image: url("/img/index/bg_mv.jpg");
	background-size: 1890px 754px; /* image size */
	animation: mvTop 40s infinite linear;
	position: relative;
	z-index: -5;
}

@keyframes mvTop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1890px 0;
  }
}

.mvTop__h1 {
	position: absolute;
	bottom: 150px;
	left: 3%;
	font-family: montserrat;
	font-weight: 700;
	font-size: 70px;
}

.mvTop__h1 span {
	display: inline-block;
	background-color: #FFF;
	margin-bottom: 30px;
	padding: 5px 20px;
	position: relative;
}

.mvTop__h1 span::after {
	display: inline-block;
	content: "";
	background-color: #000;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: -1;
}



/* service */
.service {
	width: 100%;
	position: relative;
	margin-top: 80px;
}

.service::after {
	display: inline-block;
	content: "";
	width: 98.5%;
	height: 100%;
	background-color: #fffabb;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 0 30px 30px 0;
}

.service__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.service__item {
	background-color: #FFF;
	border-radius: 20px;
	padding: 50px 0 80px 0;
	width: 31%;
}

.service__icon {
	display: block;
	width: 40%;
	max-width: 140px;
	height: auto;
	margin: 0 auto 10px auto;
}

.service__h3 {
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
}

.service__btn {
	margin: 0 auto;
}



/* about */
.about {
	width: 100%;
	position: relative;
	margin-top: 80px;
	padding-bottom: 100px;
}

.about::after {
	display: inline-block;
	content: "";
	width: 98.5%;
	height: 100%;
	background-color: #fff3c0;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	border-radius: 30px 0 0 30px;
}

.about__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.about__item {
	background-color: #FFF;
	border-radius: 20px;
	padding: 50px 0 80px 0;
	width: 48%;
	margin-bottom: 50px;
}

.about__icon {
	display: block;
	width: 40%;
	max-width: 140px;
	height: auto;
	margin: 0 auto 10px auto;
}

.about__h3 {
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
}

.about__btn {
	margin: 0 auto;
}



/* recruitment */
.recruitment {
	margin-top: 120px;
	background-color: #ffe6c2;
}

.recruitment__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	margin-bottom: 50px;
}


.recruitment__box {
	display: flex;
}

.recruitment__left {
	width: 60%;
}

.recruitment__right {
	width: 40%;
	margin-top: 20px;
}

.recruitment__txt {
	font-size: 18px;
}



/* news */
.news__wrapper {
	display: flex;
	justify-content: space-between;
}

.news__left {
	width: 30%;
}

.news__right {
	width: 70%;
}

.news__box {
	width: 100%;
	border-top: 1px solid #DDD;
}

.news__item {
	border-bottom: 1px solid #DDD;
	padding: 25px;
}

.news__date {
	display: inline;
	font-size: 18px;
	font-weight: 600;
	margin-right: 50px;
}

.news__link {
	font-size: 18px;
}

.news__link:hover {
	text-decoration: underline;
}






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

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

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

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


	
	
}


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

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

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

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


}



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

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

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

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

/* mvTop */
.mvTop {
	margin-top: 80px;
	height: 377px;
	background-size: 945px 377px; /* image size */
}

@keyframes mvTop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 945px 0;
  }
}

.mvTop__h1 {
	bottom: 70px;
	left: 2%;
	font-size: 28px;
}

.mvTop__h1 span {
	margin-bottom: 15px;
	padding: 3px 10px;
}

.mvTop__h1 span::after {
	left: 5px;
	top: 5px;
}



/* service */
.service {
	margin-top: 0;
	padding: 60px 0 40px 0;
}
	
.service__wrapper {
	width: calc(100% - 60px);
	margin: 0 40px 0 auto;
}

.service::after {
	width: calc(100% - 20px);
	border-radius: 0 15px 15px 0;
}

.service__box {
	display: block;
}

.service__item {
	background-color: #FFF;
	border-radius: 10px;
	padding: 30px 0 40px 0;
	width: 100%;
	margin-bottom: 20px;
}

.service__icon {
	max-width: 80px;
	margin: 0 auto 5px auto;
}

.service__h3 {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}

.service__btn {
	margin: 0 auto;
}



/* about */
.about {
	margin-top: 40px;
	padding: 60px 0 40px 0;
}

.about::after {
	width: calc(100% - 20px);
	border-radius: 15px 0 0 15px;
}
	
.about__wrapper {
	width: calc(100% - 60px);
	margin: 0 auto 0 40px;
}

.about__box {
	width: 100%;
	display: block;
	justify-content: space-between;
	flex-wrap: block;
}

.about__item {
	width: 100%;
	background-color: #FFF;
	border-radius: 10px;
	padding: 30px 0 40px 0;
	margin-bottom: 20px;
}

.about__icon {
	max-width: 80px;
	margin: 0 auto 5px auto;
}

.about__h3 {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}

.about__btn {
	margin: 0 auto;
}



/* recruitment */
.recruitment {
	margin-top: 40px;
}

.recruitment__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 30px;
}

.recruitment__box {
	display: block;
}

.recruitment__left {
	width: 100%;
}

.recruitment__right {
	width: 100%;
	margin-top: 0px;
}

.recruitment__txt {
	font-size: 14px;
}



/* news */
.news__wrapper {
	display: block;
}

.news__left {
	width: 100%;
}

.news__right {
	width: 100%;
}

.news__item {
	border-bottom: 1px solid #DDD;
	padding: 15px 0;
}

.news__date {
	font-size: 14px;
	margin: 0 0 5px 0;
}

.news__link {
	font-size: 14px;
}

	
	
	
}