@charset "UTF-8";



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{margin:0;padding:0;text-decoration:none;box-sizing: border-box;}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}strong { font-weight: bold;}ul li {list-style:none;	}
html{font-size: 62.5%;}
body{font-size: 1.5rem;}

html{
	scroll-behavior: smooth;
}


/* img */ 
img {
	width: 100%;
	height: auto;
}


/* sp */ 
.sp {
	display: none;
}



/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #313131;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:before {
	transition: 0.3s;
	-webkit-transition: 0.3s;
}



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	color: #000000;
	padding: 0;
	margin: 0;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}



/* フォント */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.en {
	font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: 700;
}



/* カラー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.bg-gr {
	background: linear-gradient(to right, #F18D00, #E6002D);
}
.bg-gr-transparent {
	background: linear-gradient(to right, rgba(241,141,0,0.6), rgba(230,0,45,0.6));
}
.bg-red {
	background: #E6002D;
}
.bg-orange {
	background: #F18D00;
}
.bg-yellow {
	background: #EFB312;
}

.c-white {
	color: #fff;
}
.c-red {
	color: #E6002D;
}
.c-orange {
	color: #F18D00;
}
.c-yellow {
	color: #EFB312;
}




/* flex */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.flex {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-start {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.flex-end {
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	 -ms-flex-direction: row-reverse;
		 flex-direction: row-reverse;
}
.flex-center {
	display: flex;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	width: 100%;
	padding: 25px 40px;
}
	#header .logo {
		width: 180px;
	}
@media screen and (max-width: 1024px) {
	#header {
		padding: 2.5vw 4vw;
	}
		#header .logo {
			width: 18vw;
		}
}
@media screen and (max-width: 767px) {
	#header {
		padding: 4vw 4vw 3vw 4vw;
	}
		#header .logo {
			width: 30%;
		}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#pagetitle {
	width: 100%;
	padding: 0 40px;
}
	#pagetitle .text {
		background: linear-gradient(to right, rgba(241,141,0,0.1), rgba(230,0,45,0.1));
		text-align: center;
		padding: 35px 0;
	}
		#pagetitle .text h1 {
			font-size: 4.0rem;
			font-weight: 700;
			line-height: 1;
			margin-bottom: 15px;
		}
		#pagetitle .text .en {
			font-size: 1.6rem;
			font-weight: 700;
			line-height: 1;
			color: #E6002D;
		}
@media screen and (max-width: 1024px) {
	#pagetitle {
		padding: 0 4vw;
	}
		#pagetitle .text {
			padding: 3.5vw 0;
		}
			#pagetitle .text h1 {
				font-size: 4.0vw;
				margin-bottom: 1.5vw;
			}
			#pagetitle .text .en {
				font-size: 1.6vw;
			}
}
@media screen and (max-width: 767px) {
	#pagetitle .text {
		padding: 6vw 0;
	}
		#pagetitle .text h1 {
			font-size: 6.6vw;
			margin-bottom: 3vw;
		}
		#pagetitle .text .en {
			font-size: 3.4vw;
		}
}




	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* main */
#main {
	display: block;
}
.inner {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}

/* txt */
.txt {
	font-size: 1.6rem;
	line-height: 2em;
}

/* btn */
.btn {
	width: 250px;
}
	.btn a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		height: 60px;
		padding: 0 20px;
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1.4em;
	}
	.btn.bg-red a.arrow-white {
		background: url("../image/icon_arrow_red.svg") no-repeat right 20px center / 36px;
		color: #fff;
	}
	.btn.bg-orange a.arrow-white {
		background: url("../image/icon_arrow_orange.svg") no-repeat right 20px center / 36px;
		color: #fff;
	}
	.btn a:hover {
		opacity: 0.7;
	}
@media screen and (max-width: 1200px) {
	.inner {
		width: 100%;
		padding: 0 4vw;
	}
}
@media screen and (max-width: 1024px) {
	/* txt */
	.txt {
		font-size: 1.6vw;
	}

	/* btn */
	.btn {
		width: 25vw;
	}
		.btn a {
			height: 6vw;
			padding: 0 2vw;
			font-size: 1.8vw;
		}
		.btn.bg-red a.arrow-white {
			background: url("../image/icon_arrow_red.svg") no-repeat right 2vw center / 3.6vw;
		}
		.btn.bg-orange a.arrow-white {
			background: url("../image/icon_arrow_orange.svg") no-repeat right 2vw center / 3.6vw;
		}
}
@media screen and (max-width: 767px) {
	.sp {
		display: block;
	}
	.pc {
		display: none !important;
	}
	
	/* inner */
	.inner {
		padding: 0 8vw;
	}

	/* txt */
	.txt {
		font-size: 3.8vw;
	}

	/* btn */
	.btn {
		width: 70%;
	}
		.btn a {
			height: 14vw;
			padding: 0 4vw;
			font-size: 3.8vw;
		}
		.btn.bg-red a.arrow-white {
			background: url("../image/icon_arrow_red.svg") no-repeat right 4vw center / 8vw;
		}
		.btn.bg-orange a.arrow-white {
			background: url("../image/icon_arrow_orange.svg") no-repeat right 4vw center / 8vw;
		}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* recruit */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#recruit {
	padding: 100px 0;
}
	#recruit .area {
		margin-bottom: 100px;
	}
	#recruit .area:nth-last-child(1) {
		margin-bottom: 0;
	}
		#recruit .area .text {
			width: 40%;
		}
			#recruit .area .text .en {
				font-size: 1.3rem;
				font-weight: 500;
				line-height: 1;
				margin-bottom: 15px;
			}

			#recruit .area .text h2 {
				font-size: 2.6rem;
				font-weight: 700;
				line-height: 1.4em;
				margin-bottom: 15px;
			}

			#recruit .area .text .txt {
				margin-bottom: 30px;
			}

		#recruit .area .pht {
			width: 60%;
		}
@media screen and (max-width: 1024px) {
	#recruit {
		padding: 10vw 0;
	}
		#recruit .area {
			margin-bottom: 10vw;
		}
			#recruit .area .text .en {
				font-size: 1.3vw;
				margin-bottom: 1.5vw;
			}

			#recruit .area .text h2 {
				font-size: 2.6vw;
				margin-bottom: 1.5vw;
			}

			#recruit .area .text .txt {
				margin-bottom: 3vw;
			}
}
@media screen and (max-width: 767px) {
	#recruit {
		padding: 12vw 0;
	}
		#recruit .area {
			display: block;
			margin-bottom: 15vw;
		}
			#recruit .area .text {
				width: 100%;
				position: relative;
				z-index: 2;
				text-align: center;
			}
				#recruit .area .text .en {
					font-size: 3.3vw;
					margin-bottom: 3vw;
				}

				#recruit .area .text h2 {
					font-size: 5.4vw;
					margin-bottom: 3vw;
				}

				#recruit .area .text .txt {
					margin-bottom: 4vw;
				}

				#recruit .area .text .btn {
					margin: 0 auto;
				}
	
			#recruit .area .pht {
				width: 100%;
				margin-top: 6vw;
			}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	border-top: solid 1px #ddd;
}