@charset "utf-8";


/*ヒーロー　#hero
---------------------------------------------------------------------------*/
.home #hero {
	background: url(../images/top-main.jpg) no-repeat center;
	background-size: cover;
	padding: 150px 50px 30px;
	display: flex;
	align-items: center;
	gap: 50px;
}

.home #hero .img-box {
	width: 50%;
}

.home #hero .text-area {
	width: 50%;
}

.home #hero .text-area h1 {
	font-size: 3.5vw;
	color: #0e3980;
	margin-top: 0px !important;
}

@media screen and (max-width:767px) {
	.home #hero .text-area h1 {
		font-size: 6.5vw;
		color: #ffffff;
		text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.6);
	}

	.home #hero {
		display: block;
		position: relative;
		padding: 0;
	}

	.home #hero .button-1 {
		width: 100%;
		padding: 2em 2em;
	}

	.home #hero .text-area {
		position: absolute;
	}

	.home #hero .img-box {
		width: 100%;
		height: 600px;
		border-radius: 0px;
	}

	.home .img-box>div {
		height: 100% !important;
		border-image: fill 0 linear-gradient(#3570bf0a, #23385ca6);
	}

	.home #hero .text-area {
		z-index: 10;
		width: 80vw;
		bottom: -60px;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.home#hero .text-area h1 {
		font-size: 7vw;
	}
}

/*ヒーロー　cssスライドショー
------------------------*/
.img-box {
	width: 100%;
	height: 50vw;
	overflow: hidden;
	position: relative;
	border-radius: 15px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.img-box>div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50vw;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: fade;
	animation-duration: 12s;
	animation-iteration-count: infinite;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 7;
	}

	80% {
		opacity: 0;
		transform: scale(1.2);
	}

	100% {
		z-index: 0;
		opacity: 0;
	}
}

/* 1枚目のスライド */
.img-box>div:first-of-type {
	background-image: url("../images/smple.jpg");
}

/* 2枚目のスライド */
.img-box>div:nth-of-type(2) {
	background-image: url("../images/job-01-02.jpg");
	animation-delay: 4s;
}

/* 最後のスライド */
.img-box>div:last-of-type {
	background-image: url("../images/slider02.jpg");
	animation-delay: 8s;
}

@media screen and (max-width:767px) {
	.img-box>div:first-of-type {
		background-image: url("../images/smple.jpg");
		background-position: right 24% center;
	}
}

/* .home
---------------------------------------------------------------------------*/
/*h2見出し（共通）*/
main h2 {
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 5vw;
	display: flex;
	flex-direction: column-reverse;
	letter-spacing: 0.1em;
	position: relative;
	color: #fff;
	text-align: center;
}

/*画面700px以上の追加指定*/
@media screen and (min-width:700px) {

	main h2 {
		font-size: 2rem;
	}

}


/*section01
---------------------------------------------------------------------------*/
.home .section01 {
	background: #0e3980;
	padding: 80px 0 70px;
}


.home .section01 h3 {
	font-size: 1.4em;
	letter-spacing: 1px;
}

.home .section01 .flex {
	margin-bottom: 70px;
	margin-top: 70px;
	gap: 3%;
}

.home .section01 .flex div {
	width: 50%;
}

.home .section01 .flex img {
	width: 100%;
	object-fit: cover;
	max-height: 100%;
	height: 100%;
}

.home .section01 .flex .text-area {
	color: #fff;
	padding-right: 6vw;
}

@media screen and (min-width:801px) {
	.home .section01 .flex {
		gap: 40px;
	}
}

@media screen and (max-width:800px) {
	.home .section02 {
		background: url(../images/top-message_sp_bg.jpg) no-repeat bottom right 0vw !important;
		background-size: 100% !important;
	}
}

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

	.home .section01 .flex {
		display: block;
		margin-bottom: 40px;
		margin-top: 50px;
	}

	.home .section01 h3 {
		text-align: center;
		font-size: 4.5vw;
	}


	.home .section01 .flex .text-area {
		padding-right: 0vw;
	}

	.home .section01 .flex div {
		width: 90%;
		margin: 0 auto;
	}
}

/*section02
---------------------------------------------------------------------------*/
.home .section02 {
	background: url(../images/top-message_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 120px 50px 120px;
}

.home .section02 .text-area {
	background: url(../images/top-message_ttl.svg) no-repeat center top;
	background-size: 340px;
	padding-top: 100px;
	width: 50%;
}

.home .section02 .text-area h2 {
	font-size: 1.8rem;
	text-align: center;
	color: #323232;
	margin-bottom: 1rem;
}

@media screen and (min-width:1300px) {
	.home .section02 {
		background: url(../images/top-message_bg.jpg) no-repeat right;
		background-size: contain;
		padding: 120px 50px 120px;
	}
}

@media screen and (max-width:767px) {
	.home .section02 {
		padding: 20px 20px 34vh;
	}

	.home .section02 .text-area {
		width: 100%;
	}
}

/*section03
---------------------------------------------------------------------------*/
.home .section03 {
	background: #0e3980;
	padding: 80px 0 70px;
	position: relative;
}

.home .section03:after {
	content: '';
	display: block;
	position: absolute;
	top: 50px;
	left: 40px;
	width: 306px;
	height: 120px;
	background: url(../images/top-track.svg) no-repeat;
	background-size: 100%;
}

.home .section03 .lead {
	font-size: 1.2em;
	color: #fff;
	text-align: center;
	margin-top: 70px;
}

.home .section03 .flex {
	margin-top: 70px;
	flex-wrap: wrap;
	justify-content: space-between;
}


.home .section03 .flex .card:after {
	content: '';
	display: block;
	position: absolute;
	top: -30px;
	left: -40px;
	width: 100px;
	height: 62px;
}

.home .section03 .flex .card:nth-child(1):after {
	background: url(../images/top-no01.svg) no-repeat;
	background-size: cover;
}

.home .section03 .flex .card:nth-child(2):after {
	background: url(../images/top-no02.svg) no-repeat;
	background-size: cover;
}

.home .section03 .flex .card:nth-child(3):after {
	background: url(../images/top-no03.svg) no-repeat;
	background-size: cover;
}

.home .section03 .flex .card:nth-child(4):after {
	background: url(../images/top-no04.svg) no-repeat;
	background-size: cover;
}

@media screen and (max-width:800px) {
	.home .section03 .flex div.card {
		width: 47%;
	}
}

@media screen and (max-width:767px) {
	.home .section03 .flex {
		display: block;
	}

	.home .section03 .flex div.card {
		width: 90%;
		margin: 0 auto 50px;
	}

	.home .section03 .flex .card:after {
		left: -20px;
	}

	.home .section03:after {
		top: 10px;
		left: 15px;
		width: 122px;
		height: 70px;
	}

	.home .section03 .lead {
		margin-top: 40px;
	}
}

/*section04
---------------------------------------------------------------------------*/
.home .section04 {
	padding: 0px 0 40px;
}

.home .section04 .flex {
	justify-content: flex-start;
	gap: 5%;
}

.home .section04 .flex .map-area {
	width: 60%;
}

.home .section04 .flex .map-area iframe {
	height: 550px;
}

.home .section04 dl {
	display: flex;
	flex-wrap: nowrap;
	line-height: 1.6;
}

.home .section04 dt {
	width: 8em;
}

.home .section04 h2 {
	color: #323232;
	font-size: 1.1em;
	letter-spacing: 1px;
	padding-top: 2em;
	margin-bottom: 2em;
}

@media screen and (max-width:767px) {
	.home .section04 .flex {
		display: block;
	}

	.home .section04 .flex,
	.home .section04 .flex .map-area {
		width: 100%;
	}

	.home .section04 .flex div:nth-child(2) {
		padding: 15px 30px 30px;
	}

	.home .section04 .flex .map-area iframe {
		height: 450px;
	}
}