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


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

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

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

/* mvTop */
.mvTop {
	width: 93%;
	height: calc(100vh - 100px);
	min-height: 700px;
	max-height: 1000px;
	background-image: url("/img/index/bg_mv.jpg");
	background-position: center center;
	background-size: cover;
	position: relative;
	top: 0;
	right: 0;
	z-index: -5;
	border-radius: 0 0 0 70px;
	margin: 0 0 0 auto;
}

.mvTop__h1 {
	position: absolute;
	bottom: 70px;
	left: 5%;
	font-weight: 700;
	font-size: 85px;
	color: #FFF;
	text-shadow: 0 0 15px #222;
}

.mvTop__h1 span {
	display: block;
	font-size: 24px;
	line-height: 1.8;
	margin-top: 20px;
}



/* solution */
.solution__h2 {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 60px;
}

.solution__box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.solution__item {
	width: 49%;
	background-color: #F5F5F5;
	border-radius: 20px;
	margin-bottom: 25px;
	padding: 35px 30px;
	display: flex;
	justify-content: space-between;
}

.solution__item-left {
	width: 23.5%;
	display: flex;
	align-items: center;
}

.solution__item-icon {
	display: block;
	width: 100%;
	height: auto;
}

.solution__item-right {
	width: 70%;
}

.solution__item-h3 {
	font-size: 20px;
	color: #1f386c;
	font-weight: 700;
	margin-bottom: 5px;
}

.solution__item-txt {
	font-size: 16px;
}



/* service */
.service {
	background-color: #1f386c;
	border-radius: 70px 70px 0 0;
	padding: 150px 0 220px 0;
	background-image: url("/img/index/bg_service.png");
	background-position: bottom 0 center;
	background-size: 100% 90px;
	background-repeat: no-repeat;
}

.service__h2 {
	text-align: center;
	color: #FFF;
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 50px;
}

.service__h2 span {
	display: block;
	font-size: 32px;
	margin-bottom: 10px;
}

.service__img {
	display: block;
	width: 350px;
	height: auto;
	margin: 0 auto 50px auto;
}

.service__txt {
	font-size: 18px;
	color: #FFF;
	text-align: center;
	margin-bottom: 50px;
}

.service__btn {
	border: 2px solid #FFF;
}

.service__btn:hover {
	background-color: #FFF;
	color: #1f386c;
}



/* about */
.about {
	background-color: #F1F1F1;
}

.about__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 70px;
}

.about__item {
	display: block;
	width: 32%;
	background-color: #FFF;
	border-radius: 20px;
	padding: 45px 30px 50px 30px;
	transition: .2s;
}

.about__item:hover {
	background-color: #f4d11e;
}

.about__item-number {
	font-size: 32px;
	font-weight: 700;
	color: #1f386c;
	text-align: center;
	margin-bottom: 10px;
}

.about__item-icon {
	display: block;
	width: auto;
	height: 90px;
	margin: 0 auto 20px auto;
}

.about__item-h3 {
	text-align: center;
	font-size: 20px;
	color: #1f386c;
	font-weight: 700;
	margin-bottom: 10px;
}

.about__item-txt {
	text-align: center;
	font-size: 16px;
}



/* recruitment */
.recruitment {
	background-color: #F1F1F1;
}

.recruitment__bg {
	background-color: #FFF;
	width: 100%;
	height: 100%;
	border-radius: 0 150px 150px 0;
}

.recruitment__txt {
	text-align: center;
	margin-bottom: 70px;
}



/* news */
.news {
	background-color: #F1F1F1;
}

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

.news__left {
	width: 30%;
}

.news__right {
	width: 65%;
}

.news__h2 {
	text-align: left;
}

.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;
}

.news__btn {
	margin: 0 auto 0 0;
}

.news__btn.sp {
	display: none;
}






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

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

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

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


	
	
}


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

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

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

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

/* news */
.news__btn {
	max-width: 100%;
}

}



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

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

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

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

/* mvTop */
.mvTop {
	width: 93%;
	height: calc(100vh - 100px);
	min-height: 300px;
	max-height: 500px;
	border-radius: 0 0 0 30px;
}

.mvTop__h1 {
	bottom: 30px;
	left: 5%;
	font-size: 32px;
	text-shadow: 0 0 10px #222;
}

.mvTop__h1 span {
	font-size: 14px;
	margin-top: 10px;
}



/* solution */
.solution__h2 {
	font-size: 20px;
	margin-bottom: 30px;
}

.solution__item {
	width: 100%;
	background-color: #F5F5F5;
	border-radius: 10px;
	margin-bottom: 15px;
	padding: 20px;
}

.solution__item-left {
	width: 25%;
	display: flex;
	align-items: center;
}

.solution__item-right {
	width: 70%;
}

.solution__item-h3 {
	font-size: 16px;
}

.solution__item-txt {
	font-size: 14px;
}



/* service */
.service {
	border-radius: 30px 30px 0 0;
	padding: 60px 0 120px 0;
	background-size: 100% 20px;
}

.service__h2 {
	font-size: 20px;
	margin-bottom: 30px;
}

.service__h2 span {
	font-size: 16px;
	margin-bottom: 5px;
}

.service__img {
	width: 200px;
	margin: 0 auto 30px auto;
}

.service__txt {
	font-size: 14px;
	margin-bottom: 30px;
}

.service__btn {
	border: 1px solid #FFF;
}




/* about */
.about__box {
	margin-bottom: 30px;
	display: block;
}

.about__item {
	width: 100%;
	border-radius: 10px;
	padding: 25px 20px 30px 20px;
	transition: .2s;
	margin-bottom: 15px;
}

.about__item-number {
	font-size: 24px;
	margin-bottom: 5px;
}

.about__item-icon {
	height: 50px;
	margin: 0 auto 15px auto;
}

.about__item-h3 {
	font-size: 16px;
	margin-bottom: 5px;
}

.about__item-txt {
	text-align: center;
	font-size: 14px;
}



/* recruitment */
.recruitment__bg {
	border-radius: 0 30px 30px 0;
}

.recruitment__txt {
	text-align: center;
	margin-bottom: 30px;
}



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

.news__left {
	width: 100%;
}

.news__right {
	width: 100%;
}
	
.news__h2 {
	text-align: center;		
}

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

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

.news__link {
	font-size: 14px;
}
		
	
.news__btn.sp {
	display: block;
	width: 100%;
	max-width: 250px!important;
	margin: 30px auto 0 auto;
}
	
	
	

	
	
	
}