/*
Theme Name: and
Description: and
Version: 1.0
Author: and
*/

/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{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}img{width: 100%;height: auto}
html{font-size: 62.5%;}
body{font-size: 1.5rem;}




/* body */
body {
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	color: #222222;
	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;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: hidden;
}

.none {
	display: none !important;
}


/* テキスト装飾 */
.en {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}
.blue01 {
	color: #1180BF;
}
.blue02 {
	color: #2EA4D8;
}
a {
	color: #222222;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:before {
	transition: 0.3s;
	-webkit-transition: 0.3s;
}


/* 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 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	padding: 40px 40px 0 40px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 12;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
	#header .nav {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
		#header .nav .logo {
			width: 100px;
			margin-right: 10px;
		}
			#header .nav .logo a {
				display: block;
				line-height: 1;
			}
			#header .nav .logo a:hover {
				opacity: 0.7;
			}

		#header .nav .link-list li {
			margin-left: 25px;
		}
			#header .nav .link-list li a {
				display: block;
				font-size: 1.4rem;
				font-weight: 500;
				line-height: 1;
			}
			#header .nav .link-list li a:hover {
				color: #1180BF;
			}

	#header .btn-list .btn-contact {
		width: 150px;
		margin-right: 20px;
	}
		#header .btn-list .btn-contact a {
			display: block;
			height: 50px;
			border-radius: 10px;
			background: #222;
			font-size: 1.4rem;
			font-weight: 700;
			color: #fff;
			text-align: center;
			line-height: 50px;
		}
		#header .btn-list .btn-contact a:hover {
			background: #2EA4D8;
		}

	#header .btn-list .menu {
		display: block;
		position: relative;
		cursor: pointer;
		background: linear-gradient(to bottom right, #31A7DA, #006FB7);
		width: 50px;
		height: 50px;
		border-radius: 10px;
	}
		#header .btn-list .menu span {
			width: 22px;
			display: inline-block;
			border-radius: 1px;
			position: absolute;
			top: 50%;
			left: 50%;
			margin-left: -11px;
			height: 1px;
			background: #fff;
			transition: 0.3s;
			-webkit-transition: 0.3s;
		}
		#header .btn-list .menu span:nth-of-type(1) {
			margin-top: -3px;
		}
		#header .btn-list .menu span:nth-of-type(2) {
			margin-top: 3px;
		}

		#header .btn-list .menu.active .openbtn-area {
			transform: rotateY(-360deg);
		}
			#header .btn-list .menu.active span  {
				background: #fff;
			}
			#header .btn-list .menu.active span:nth-of-type(1) {
				transform: translateY(6px) rotate(-155deg);
				margin-top: -6px;
			}
			#header .btn-list .menu.active span:nth-of-type(2) {
				transform: translateY(-6px) rotate(155deg);
				margin-top: 6px;
			}
@media screen and (max-width: 1024px) {
	#header {
		padding: 4vw 4vw 0 4vw;
	}
		#header .nav .logo {
			width: 10vw;
			margin-right: 1vw;
		}

		#header .nav .link-list li {
			margin-left: 2.5vw;
		}
			#header .nav .link-list li a {
				font-size: 1.4vw;
			}

		#header .btn-list .btn-contact {
			width: 15vw;
			margin-right: 2vw;
		}
			#header .btn-list .btn-contact a {
				display: block;
				height: 5vw;
				border-radius: 1vw;
				font-size: 1.4vw;
				line-height: 5vw;
			}

		#header .btn-list .menu {
			width: 5vw;
			height: 5vw;
			border-radius: 1vw;
		}
			#header .btn-list .menu span {
				width: 2.2vw;
				border-radius: 1vw;
				margin-left: -1.1vw;
			}
}
@media screen and (max-width: 767px) {
	#header {
		padding: 4vw 4vw 0 4vw;
	}
		#header .nav .logo {
			width: 23vw;
			margin-right: 0;
		}

		#header .nav .link-list {
			display: none;
		}

		#header .btn-list .btn-contact {
			width: 30vw;
			margin-right: 4vw;
		}
			#header .btn-list .btn-contact a {
				height: 12vw;
				border-radius: 2vw;
				font-size: 3.4vw;
				line-height: 12vw;
			}

		#header .btn-list .menu {
			width: 12vw;
			height: 12vw;
			border-radius: 2vw;
		}
			#header .btn-list .menu span {
				width: 6vw;
				border-radius: 2vw;
				margin-left: -3vw;
			}
}

	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox {
	display: none;
	width: 100%;
	background: rgba(0,0,0,0.3);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 11;
}
	#menubox .menunav {
		width: 350px;
		margin-left: -webkit-calc(100% - 350px);
		margin-left: calc(100% - 350px);
		border-radius: 20px 0 0 20px;
		background: #fff;
		overflow-y: scroll;
		height: 100vh;
		height: 100dvh;
		padding-top: 130px;
	}
	#menubox .menunav::-webkit-scrollbar {
		width: 0;
		height: 0;
	}
	#menubox .menunav::-webkit-scrollbar-track {
		background: none;
	}
	#menubox .menunav::-webkit-scrollbar-thumb {
		background: none;
	}
		#menubox .menunav .cell {
			border-top: dashed 1px #504A4A;
			padding: 30px;
		}
			#menubox .menunav .cell ul li {
				margin-bottom: 12px;
			}
			#menubox .menunav .cell ul li:nth-last-child(1) {
				margin-bottom: 0;
			}
				#menubox .menunav .cell ul li a {
					display: block;
					height: 30px;
					background: url("../img/icon_arrow_blue.svg") no-repeat left center / 30px;
					font-size: 1.6rem;
					font-weight: 700;
					line-height: 28px;
					padding-left: 40px;
				}
				#menubox .menunav .cell ul li a:hover {
					color: #1180BF;
					padding-left: 35px;
				}

			#menubox .menunav .cell .list a.linkbox {
				display: flex;
				justify-content: space-between;
				align-items: center;
				background: #F1F8FC;
				border-radius: 10px;
				padding: 15px;
				margin-top: 15px;
			}
			#menubox .menunav .cell .list a.linkbox:hover {
				opacity: 0.7;
			}
				#menubox .menunav .cell .list a.linkbox .pht {
					width: 30%;
					border-radius: 5px;
				}

				#menubox .menunav .cell .list a.linkbox .text {
					width: 65%;
				}
					#menubox .menunav .cell .list a.linkbox .text .en {
						font-size: 1.1rem;
						font-weight: 600;
						line-height: 1;
						margin-bottom: 5px;
					}

					#menubox .menunav .cell .list a.linkbox .text h3 {
						font-size: 1.4rem;
						font-weight: 700;
						line-height: 1.3em;
					}
@media screen and (max-width: 1024px) {
	#menubox .menunav {
		width: 35vw;
		margin-left: -webkit-calc(100% - 35vw);
		margin-left: calc(100% - 35vw);
		border-radius: 2vw 0 0 2vw;
		padding-top: 13vw;
	}
		#menubox .menunav .cell {
			padding: 3vw;
		}
			#menubox .menunav .cell ul li {
				margin-bottom: 1.2vw;
			}
				#menubox .menunav .cell ul li a {
					height: 3vw;
					background: url("../img/icon_arrow_blue.svg") no-repeat left center / 3vw;
					font-size: 1.6vw;
					line-height: 2.8vw;
					padding-left: 4vw;
				}
				#menubox .menunav .cell ul li a:hover {
					padding-left: 3.5vw;
				}

			#menubox .menunav .cell .list a.linkbox {
				border-radius: 1vw;
				padding: 1.5vw;
				margin-top: 1.5vw;
			}
				#menubox .menunav .cell .list a.linkbox .pht {
					border-radius: 0.5vw;
				}

				#menubox .menunav .cell .list a.linkbox .text .en {
					font-size: 1.1vw;
					margin-bottom: 0.5vw;
				}

				#menubox .menunav .cell .list a.linkbox .text h3 {
					font-size: 1.4vw;
				}
}
@media screen and (max-width: 767px) {
	#menubox .menunav {
		width: 100%;
		margin-left: 0;
		border-radius: 0;
		padding-top: 20vw;
	}
		#menubox .menunav .cell {
			padding: 8vw;
		}
			#menubox .menunav .cell ul li {
				margin-bottom: 4vw;
			}
				#menubox .menunav .cell ul li a {
					height: 6vw;
					background: url("../img/icon_arrow_blue.svg") no-repeat left center / 7vw;
					font-size: 4.0vw;
					line-height: 5.6vw;
					padding-left: 9vw;
				}
				#menubox .menunav .cell ul li a:hover {
					padding-left: 3.5vw;
				}

			#menubox .menunav .cell .list a.linkbox {
				border-radius: 2vw;
				padding: 3vw;
				margin-top: 4vw;
			}
				#menubox .menunav .cell .list a.linkbox .pht {
					border-radius: 1vw;
				}

				#menubox .menunav .cell .list a.linkbox .text .en {
					font-size: 3.1vw;
					margin-bottom: 2vw;
				}

				#menubox .menunav .cell .list a.linkbox .text h3 {
					font-size: 3.6vw;
				}
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* pagetitle */
#pagetitle .inner {
	background: url("../img/bg_motif.svg") no-repeat left 75% center / 380px;
}
	#pagetitle .text {
		padding-top: 220px;
		padding-bottom: 150px;
	}
		#pagetitle .text .en {
			font-size: 10.0rem;
			font-weight: 600;
			line-height: 1;
			margin-bottom: 20px;
		}

		#pagetitle .text h1 {
			font-size: 3.0rem;
			font-weight: 700;
			line-height: 1;
		}

	#pagetitle .breadcrumbs {
		font-size: 1.2rem;
		line-height: 1;
		position: absolute;
		right: 0;
		bottom: 150px;
	}
		#pagetitle .breadcrumbs a {
			text-decoration: underline;
		}
		#pagetitle .breadcrumbs a:hover {
			text-decoration: none;
		}

#pagetitle .pht {
	margin: 0 40px;
	border-radius: 20px;
	overflow: hidden;
}

/* pagetitle-detail */
#pagetitle-detail .inner {
	background: url("../img/bg_motif.svg") no-repeat right center / 380px;
}
	#pagetitle-detail .text {
		padding-top: 150px;
		padding-bottom: 60px;
	}
		#pagetitle-detail .text .en {
			font-size: 2.0rem;
			font-weight: 600;
			line-height: 1;
			margin-bottom: 20px;
		}

		#pagetitle-detail .text h1 {
			font-size: 5.0rem;
			font-weight: 700;
			line-height: 1.3em;
		}

	#pagetitle-detail .breadcrumbs {
		font-size: 1.2rem;
		line-height: 1;
		margin-bottom: 30px;
	}
		#pagetitle-detail .breadcrumbs a {
			text-decoration: underline;
		}
		#pagetitle-detail .breadcrumbs a:hover {
			text-decoration: none;
		}

#pagetitle-detail .pht {
	margin: 0 40px;
	border-radius: 20px;
	overflow: hidden;
}

/* title */
.title {
	margin-bottom: 40px;
}
.title.center {
	text-align: center;
}
	.title .en {
		font-size: 2.0rem;
		font-weight: 600;
		line-height: 1;
		margin-bottom: 15px;
	}

	.title h2 {
		font-size: 4.0rem;
		font-weight: 600;
		line-height: 1.3em;
	}
@media screen and (max-width: 1024px) {
	/* pagetitle */
	#pagetitle .inner {
		background: url("../img/bg_motif.svg") no-repeat left 75% center / 38vw;
	}
		#pagetitle .text {
			padding-top: 20vw;
			padding-bottom: 12vw;
		}
			#pagetitle .text .en {
				font-size: 10.0vw;
				margin-bottom: 2vw;
			}

			#pagetitle .text h1 {
				font-size: 3.0vw;
			}

		#pagetitle .breadcrumbs {
			font-size: 1.2vw;
			bottom: 12vw;
		}

	#pagetitle .pht {
		margin: 0 4vw;
		border-radius: 2vw;
	}

	/* pagetitle-detail */
	#pagetitle-detail .inner {
		background: url("../img/bg_motif.svg") no-repeat right center / 38vw;
	}
		#pagetitle-detail .text {
			padding-top: 15vw;
			padding-bottom: 6vw;
		}
			#pagetitle-detail .text .en {
				font-size: 2.0vw;
				margin-bottom: 2vw;
			}

			#pagetitle-detail .text h1 {
				font-size: 5.0vw;
			}

		#pagetitle-detail .breadcrumbs {
			font-size: 1.2vw;
			margin-bottom: 3vw;
		}

	#pagetitle-detail .pht {
		margin: 0 4vw;
		border-radius: 2vw;
	}

	/* title */
	.title {
		margin-bottom: 4vw;
	}
		.title .en {
			font-size: 2.0vw;
			margin-bottom: 1.5vw;
		}

		.title h2 {
			font-size: 4.0vw;
		}
}
@media screen and (max-width: 767px) {
	/* pagetitle */
	#pagetitle .inner {
		background: url("../img/bg_motif.svg") no-repeat right 5% center / 45vw;
	}
		#pagetitle .text {
			padding-top: 26vw;
			padding-bottom: 12vw;
		}
			#pagetitle .text .en {
				font-size: 12.0vw;
				margin-bottom: 3vw;
			}

			#pagetitle .text h1 {
				font-size: 5.0vw;
			}

		#pagetitle .breadcrumbs {
			font-size: 2.8vw;
			position: static;
			padding-bottom: 6vw;
		}

	#pagetitle .pht {
		width: 100%;
		height: 100%;
		aspect-ratio: 4 / 3;
		margin: 0;
		border-radius: 4vw;
	}
		#pagetitle .pht img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	/* pagetitle-detail */
	#pagetitle-detail .inner {
		background: url("../img/bg_motif.svg") no-repeat right center / 38vw;
	}
		#pagetitle-detail .text {
			padding-top: 25vw;
			padding-bottom: 10vw;
		}
			#pagetitle-detail .text .en {
				font-size: 4.0vw;
				margin-bottom: 4vw;
			}

			#pagetitle-detail .text h1 {
				font-size: 7.0vw;
			}

		#pagetitle-detail .breadcrumbs {
			font-size: 2.8vw;
			padding-bottom: 5vw;
			white-space: nowrap;
			overflow-x: scroll;
		}

	#pagetitle-detail .pht {
		width: 100%;
		height: 100%;
		aspect-ratio: 4 / 3;
		margin: 0;
		border-radius: 4vw;
	}
		#pagetitle-detail .pht img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	/* title */
	.title {
		margin-bottom: 6vw;
		text-align: center;
	}
		.title .en {
			font-size: 4.0vw;
			margin-bottom: 2vw;
		}

		.title h2 {
			font-size: 6.0vw;
		}
}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.sp {
	display: none;
}

/* main */
#main {
	display: block;
}
.inner {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
.inner_full {
	width: 100%;
	position: relative;
}

/* img-over */
a .img-over {
	overflow: hidden;
}
	a .img-over img {
		-moz-transition: -moz-transform 0.2s linear;
		-webkit-transition: -webkit-transform 0.2s linear;
		-o-transition: -o-transform 0.2s linear;
		-ms-transition: -ms-transform 0.2s linear;
		transition: transform 0.2s linear;
	}
	a:hover .img-over img {
		-webkit-transform: scale(1.05);
		-moz-transform: scale(1.05);
		-o-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}

/* wrap */
.wrap-top {
	padding-top: 150px;
}
.wrap-bottom {
	padding-bottom: 150px;
}

/* txt */
.txt {
	font-size: 1.6rem;
	line-height: 2em;
}
.sub-txt {
	font-size: 1.3rem;
	line-height: 1.4em;
}

/* read */
.read {
	text-align: center;
	margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
	.inner {
		width: 88%;
	}
}
@media screen and (max-width: 1024px) {
	/* wrap */
	.wrap-top {
		padding-top: 15vw;
	}
	.wrap-bottom {
		padding-bottom: 15vw;
	}

	/* txt */
	.txt {
		font-size: 1.6vw;
		line-height: 1.7em;
	}
	.sub-txt {
		font-size: 1.3vw;
	}

	/* read */
	.read {
		margin-bottom: 5vw;
	}
}
@media screen and (max-width: 767px) {
	.sp {
		display: block;
	}
	.pc {
		display: none !important;
	}

	/* wrap */
	.wrap-top {
		padding-top: 16vw;
	}
	.wrap-bottom {
		padding-bottom: 16vw;
	}

	/* txt */
	.txt {
		font-size: 3.8vw;
	}
	.sub-txt {
		font-size: 3.2vw;
	}

	/* read */
	.read {
		margin-bottom: 7vw;
	}
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ボタン */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* btn */
.btn {
	width: 250px;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
.btn.btn-white {
	background: #fff;
}
.btn.btn-blue {
	background: #1180BF;
}
.btn:hover {
	background: #222;
}
	.btn a {
		display: block;
		height: 60px;
		line-height: 60px;
		padding: 0 25px;
		font-size: 1.6rem;
	}
	.btn.btn-white a {
		background: url("../img/icon_arrow_blue.svg") no-repeat right 20px center / 36px;
		color: #1180BF;
	}
	.btn.btn-white a:hover {
		background: url("../img/icon_arrow_white.svg") no-repeat right 20px center / 36px;
		color: #fff;
	}
	.btn.btn-blue a {
		background: url("../img/icon_arrow_white.svg") no-repeat right 20px center / 36px;
		color: #fff;
	}
	.btn.btn-blue a:hover {
		background: url("../img/icon_arrow_white.svg") no-repeat right 20px center / 36px;
		color: #fff;
	}

/* more */
a .more {
	display: inline-block;
	background: url("../img/icon_arrow_blue.svg") no-repeat right center / auto 24px;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 24px;
	padding-right: 45px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover .more {
	color: #1180BF;
	background: url("../img/icon_arrow_blue.svg") no-repeat right center / auto 20px;
	padding-right: 41px;
}
@media screen and (max-width: 1024px) {
	/* btn */
	.btn {
		width: 25vw;
		border-radius: 3vw;
	}
		.btn a {
			height: 6vw;
			line-height: 6vw;
			padding: 0 2.5vw;
			font-size: 1.6vw;
		}
		.btn.btn-white a {
			background: url("../img/icon_arrow_blue.svg") no-repeat right 2vw center / 3.6vw;
		}
		.btn.btn-white a:hover {
			background: url("../img/icon_arrow_white.svg") no-repeat right 2vw center / 3.6vw;
		}
		.btn.btn-blue a {
			background: url("../img/icon_arrow_white.svg") no-repeat right 2vw center / 3.6vw;
		}
		.btn.btn-blue a:hover {
			background: url("../img/icon_arrow_white.svg") no-repeat right 2vw center / 3.6vw;
		}

	/* more */
	a .more {
		background: url("../img/icon_arrow_blue.svg") no-repeat right center / auto 2.4vw;
		font-size: 1.5vw;
		line-height: 2.4vw;
		padding-right: 4.5vw;
	}
	a:hover .more {
		background: url("../img/icon_arrow_blue.svg") no-repeat right center / auto 2.2vw;
		padding-right: 4.2vw;
	}
}
@media screen and (max-width: 767px) {
	/* btn */
	.btn {
		width: 50vw;
		margin: 0 auto;
		border-radius: 6.5vw;
	}
		.btn a {
			height: 13vw;
			line-height: 13vw;
			padding: 0 5vw;
			font-size: 3.8vw;
		}
		.btn.btn-white a {
			background: url("../img/icon_arrow_blue.svg") no-repeat right 5vw center / 7vw;
		}
		.btn.btn-white a:hover {
			background: url("../img/icon_arrow_white.svg") no-repeat right 5vw center / 7vw;
		}
		.btn.btn-blue a {
			background: url("../img/icon_arrow_white.svg") no-repeat right 5vw center / 7vw;
		}
		.btn.btn-blue a:hover {
			background: url("../img/icon_arrow_white.svg") no-repeat right 5vw center / 7vw;
		}
	
	/* more */
	a .more {
		background: url("../img/icon_arrow_blue.svg") no-repeat right center / auto 6vw;
		font-size: 3.6vw;
		line-height: 6vw;
		padding-right: 11vw;
	}
	a:hover .more {
		background: url("../img/icon_arrow_blue.svg") no-repeat right center / auto 6vw;
		padding-right: 11vw;
	}
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* RECRUIT */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#c-recruit .bg {
	margin-left: 40px;
	margin-right: 40px;
	border-radius: 20px;
	color: #fff;
	margin-bottom: -140px;
	background: linear-gradient(to bottom right, #31A7DA, #006FB7);
	position: relative;
	z-index: 2;
}
#c-recruit .bg:before {
	content: "";
	width: 100%;
	height: 100%;
	background: url("../img/recruit_motif.svg") no-repeat center / 100%;
	position: absolute;
	top: 0;
	left: 0;
}
	#c-recruit .bg .top-tit {
		width: 40%;
	}
		#c-recruit .bg .top-tit h2 {
			font-size: 4.0rem;
			font-weight: 700;
			line-height: 1.3em;
			margin-bottom: 20px;
		}

		#c-recruit .bg .top-tit .en {
			font-size: 2.0rem;
			font-weight: 600;
			line-height: 1;
		}

	#c-recruit .bg .text {
		width: 60%;
	}
		#c-recruit .bg .text .txt {
			font-weight: 500;
			margin-bottom: 30px;
		}
@media screen and (max-width: 1024px) {
	#c-recruit .bg {
		margin-left: 4vw;
		margin-right: 4vw;
		border-radius: 2vw;
		margin-bottom: -14vw;
	}
		#c-recruit .bg .top-tit {
			width: 45%;
		}
			#c-recruit .bg .top-tit h2 {
				font-size: 4.0vw;
				margin-bottom: 2vw;
			}

			#c-recruit .bg .top-tit .en {
				font-size: 2.0vw;
			}

		#c-recruit .bg .text {
			width: 55%;
		}
			#c-recruit .bg .text .txt {
				margin-bottom: 3vw;
			}
}
@media screen and (max-width: 767px) {
	#c-recruit .bg {
		margin-left: 6vw;
		margin-right: 6vw;
		border-radius: 4vw;
		margin-bottom: -20vw;
	}
	#c-recruit .bg:before {
		background: url("../img/recruit_motif.svg") no-repeat center / 180%;
	}
		#c-recruit .bg .inner {
			display: block;
			width: 80%;
		}
		#c-recruit .bg .top-tit {
			width: 100%;
			margin-bottom: 6vw;
			text-align: center;
		}
			#c-recruit .bg .top-tit h2 {
				font-size: 6.0vw;
				margin-bottom: 4vw;
			}

			#c-recruit .bg .top-tit .en {
				font-size: 4.0vw;
			}

		#c-recruit .bg .text {
			width: 100%;
		}
			#c-recruit .bg .text .txt {
				margin-bottom: 8vw;
				text-align: center;
			}
	
	#c-recruit .pht {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
		overflow: hidden;
	}
		#c-recruit .pht img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* CTA */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#cta {
	width: 100%;
	background: #F3F9FC;
	position: relative;
}
#cta:before {
	content: "";
	width: 100%;
	height: 32%;
	background: #1180BF;
	position: absolute;
	bottom: 0;
	left: 0;
}
	#cta a.linkbox {
		width: 31%;
		display: block;
		background: #fff;
		border-radius: 10px;
		padding: 40px 45px;
	}
		#cta a.linkbox .head {
			display: inline-block;
			font-size: 1.4rem;
			line-height: 1;
			padding-bottom: 8px;
			position: relative;
			margin-bottom: 22px;
		}
		#cta a.linkbox .head:before {
			content: "";
			width: 100%;
			height: 1px;
			background: #2EA4D8;
			position: absolute;
			bottom: 0;
			left: 0;
		}

		#cta a.linkbox h2 {
			font-size: 2.3rem;
			font-weight: 700;
			line-height: 1.3em;
			padding-bottom: 15px;
		}

		#cta a.linkbox .txt {
			line-height: 1.8em;
			padding-bottom: 20px;
		}

		#cta a.linkbox .tel {
			background: #F3F9FC;
			border-radius: 10px;
			text-align: center;
			padding: 15px 0;
			margin-top: 15px;
		}
			#cta a.linkbox .tel .tt {
				font-size: 1.6rem;
				font-weight: 700;
				line-height: 1;
				margin-top: -22px;
				margin-bottom: 12px;
			}

			#cta a.linkbox .tel .en {
				font-size: 2.6rem;
				font-weight: 600;
				line-height: 1;
			}
@media screen and (max-width: 1024px) {
	#cta:before {
		height: 35%;
	}
		#cta a.linkbox {
			border-radius: 1vw;
			padding: 3vw 3.5vw;
		}
			#cta a.linkbox .head {
				font-size: 1.4vw;
				padding-bottom: 0.8vw;
				margin-bottom: 2.2vw;
			}

			#cta a.linkbox h2 {
				font-size: 2.3vw;
				padding-bottom: 1.5vw;
			}

			#cta a.linkbox .txt {
				padding-bottom: 2vw;
			}

			#cta a.linkbox .tel {
				border-radius: 1vw;
				padding: 1.5vw 0;
				margin-top: 1.5vw;
			}
				#cta a.linkbox .tel .tt {
					font-size: 1.6vw;
					margin-top: -2.2vw;
					margin-bottom: 1.2vw;
				}

				#cta a.linkbox .tel .en {
					font-size: 2.2vw;
				}
}
@media screen and (max-width: 767px) {
	#cta:before {
		height: 45%;
	}
	#cta .inner {
		display: block;
	}
		#cta a.linkbox {
			width: 100%;
			border-radius: 2vw;
			padding: 8vw 8vw;
			margin-bottom: 5vw;
		}
		#cta a.linkbox:nth-last-child(1) {
			margin-bottom: 0;
		}
			#cta a.linkbox .head {
				font-size: 3.4vw;
				padding-bottom: 1.8vw;
				margin-bottom: 5vw;
			}

			#cta a.linkbox h2 {
				font-size: 4.6vw;
				padding-bottom: 3vw;
			}

			#cta a.linkbox .txt {
				padding-bottom: 4vw;
			}

			#cta a.linkbox .tel {
				border-radius: 2vw;
				padding: 3vw 0;
				margin-top: 3vw;
			}
				#cta a.linkbox .tel .tt {
					font-size: 3.6vw;
					margin-top: -4.5vw;
					margin-bottom: 3.2vw;
				}

				#cta a.linkbox .tel .en {
					font-size: 6.8vw;
				}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	background: #1180BF;
	padding-top: 80px;
}
	#footer .area {
		border-bottom: solid 1px rgba(255,255,255,0.3);
		padding-bottom: 80px;
	}
		#footer .area .profile {
			width: 45%;
		}
			#footer .area .profile .logo {
				width: 130px;
				margin-bottom: 20px;
			}
				#footer .area .profile .logo a {
					display: block;
					line-height: 1;
				}
				#footer .area .profile .logo a:hover {
					opacity: 0.7;
				}

			#footer .area .profile .access {
				font-size: 1.4rem;
				color: #fff;
			}

		#footer .area .sitemap {
			width: 55%;
		}
			#footer .area .sitemap .service {
				margin-right: 30px;
			}

			#footer .area .sitemap .head {
				margin-bottom: 15px;
			}
				#footer .area .sitemap .head a {
					display: block;
					font-size: 1.6rem;
					font-weight: 600;
					color: #fff;
					line-height: 1.3em;
					opacity: 0.7;
				}
				#footer .area .sitemap .head a:hover {
					opacity: 1;
					text-decoration: underline;
				}

			#footer .area .sitemap .link-list li {
				margin-bottom: 15px;
			}
			#footer .area .sitemap .link-list li:nth-last-child(1) {
				margin-bottom: 0;
			}
				#footer .area .sitemap .link-list li a {
					display: block;
					font-size: 1.6rem;
					font-weight: 600;
					color: #fff;
					line-height: 1.3em;
				}
				#footer .area .sitemap .link-list li a:hover {
					text-decoration: underline;
				}

	#footer .info {
		padding: 40px 0;
	}
		#footer .info a {
			display: block;
			font-size: 1.4rem;
			font-weight: 500;
			line-height: 1;
			color: #fff;
		}
		#footer .info a:hover {
			opacity: 0.7;
		}

		#footer .info .copyright {
			font-size: 1.2rem;
			line-height: 1;
			color: #fff;
		}
@media screen and (max-width: 1024px) {
	#footer {
		padding-top: 8vw;
	}
		#footer .area {
			padding-bottom: 8vw;
		}
			#footer .area .profile {
				width: 40%;
			}
				#footer .area .profile .logo {
					width: 13vw;
					margin-bottom: 2vw;
				}

				#footer .area .profile .access {
					font-size: 1.4vw;
				}

			#footer .area .sitemap {
				width: 60%;
			}
				#footer .area .sitemap .service {
					margin-right: 3vw;
				}

				#footer .area .sitemap .head {
					margin-bottom: 1.5vw;
				}
					#footer .area .sitemap .head a {
						font-size: 1.6vw;
					}

				#footer .area .sitemap .link-list li {
					margin-bottom: 1.5vw;
				}
					#footer .area .sitemap .link-list li a {
						font-size: 1.6vw;
					}

		#footer .info {
			padding: 4vw 0;
		}
			#footer .info a {
				font-size: 1.4vw;
			}

			#footer .info .copyright {
				font-size: 1.2vw;
			}
}
@media screen and (max-width: 767px) {
	#footer {
		padding-top: 12vw;
	}
		#footer .area {
			display: block;
			padding-bottom: 0;
		}
			#footer .area .profile {
				width: 100%;
				margin-bottom: 10vw;
			}
				#footer .area .profile .logo {
					width: 30%;
					margin: 0 auto 3vw auto;
				}

				#footer .area .profile .access {
					font-size: 3.4vw;
					text-align: center;
				}

			#footer .area .sitemap {
				display: block;
				width: 100%;
			}
				#footer .area .sitemap .service {
					margin-right: 0;
				}

				#footer .area .sitemap .head {
					margin-bottom: 0;
					border-top: solid 1px rgba(255,255,255,0.3);
				}
					#footer .area .sitemap .head a {
						font-size: 3.6vw;
						opacity: 1;
						padding: 5vw 2vw;
					}

				#footer .area .sitemap .link-list li {
					margin-bottom: 0;
					border-top: solid 1px rgba(255,255,255,0.3);
				}
					#footer .area .sitemap .link-list li a {
						font-size: 3.6vw;
						padding: 5vw 2vw;
					}

		#footer .info {
			display: block;
			padding: 8vw 0;
			text-align: center;
		}
			#footer .info a {
				display: none;
			}

			#footer .info .copyright {
				font-size: 3.0vw;
			}
}