@charset "utf-8";

:root {
	--mainBlue: #000063;
	--mainBlue80: #00006380;
	--mainBlue40: #00006340;
	--mainBlue20: #00006320;
	--mainBlue00: #00006300;
	--mainRed: #f90000;
	--mainRed80: #f9000080;
	--mainRed40: #f9000040;
	--mainRed20: #f9000020;
	--fontSans: 'Noto Sans JP', sans-serif;
	--fontSerif: 'Noto Serif JP', serif;
	--fontRaj: 'Rajdhani', sans-serif;
	--iconMap: "\f3c5";
	--iconTel: "\f095";
	--iconFax: "\f1ac";
	--iconTime: "\f017";
	--iconMail: "\f0e0";
}
html {
	scroll-behavior: smooth;
}
*,::before,::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: var(--fontSans);
	line-height: 1;
	color: #555;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
.fade {
  opacity : 0;
  transition : 1.5s;
}
.fade.toTop {
  transform : translate(0, 6rem);
}
.fade.toRight {
  transform : translate(-6rem, 0);
}
.fade.toLeft {
  transform : translate(6rem, 0);
}
.fade.fadeIn{
  opacity : 1;
  transform : translate(0, 0) !important;
}



/*	header	************************************************************************************************************************************************************************************/
header {
	display: flex;
	position: fixed;
	top: 0;
	z-index: 9999;
	width: 100%;
}
header figure {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	filter: drop-shadow(0 .1em .25em #0003);
}
header figure::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 24vw solid #fff;
	border-right: 24vw solid transparent;
}
header figure img {
	position: absolute;
	top: 5%;
	left: 5%;
	width: 70%;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	header figure::before {
		border-top: 40vw solid #fff;
		border-right: 40vw solid transparent;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	header figure::before {
		border-top: 60vw solid #fffb;
		border-right: 60vw solid transparent;
	}
}



/*	Global	************************************************************************************************************************************************************************************/
.global {
	width: 100%;
}
.global>div {
	width: 100%;
	background: var(--mainBlue80);
	display: flex;
	justify-content: flex-end;
	transition: .5s;
}
.global.downPage>div {
	background: #fffc;
	backdrop-filter: blur(.3em);
	box-shadow: 0 .1em .25em #0003;
}
.global,
.global a {
	color: #fff;
	transition: .5s;
}
.global a:hover,
.pageIndex .global ul li:nth-child(1) a,
.pageAbout .global ul li:nth-child(2) a,
.pageBusiness .global ul li:nth-child(3) a,
.pageStaff .global ul li:nth-child(4) a {
	color: var(--mainBlue);
	text-shadow: 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff;
}
.pageIndex .global ul li:nth-child(1) a,
.pageAbout .global ul li:nth-child(2) a,
.pageBusiness .global ul li:nth-child(3) a,
.pageStaff .global ul li:nth-child(4) a {
	font-size: 1.4em;
}
.global.downPage,
.global.downPage a {
	color: var(--mainBlue);
}
.global.downPage a:hover {
	color: #fff;
	text-shadow: 0 0 .3em var(--mainBlue), 0 0 .3em var(--mainBlue), 0 0 .3em var(--mainBlue);
}
.global input,
.global label {
	display: none;
}
.global ul {
	display: flex;
	align-items: flex-end;
	list-style: none;
	font-size: .9em;
	font-weight: 700;
	margin-bottom: .75em;
}
.global ul li {
	margin-left: 1.5em;
}
.global dl {
	margin-left: 2em;
	display: flex;
}
.global dl div {
	padding: .5em 0 .75em;
}
.global dl dt {
	font-size: .7em;
	line-height: 1.4;
	margin-bottom: .5em;
}
.global dl dd::before,
.global dl dd a::before {
	font-family: "Font Awesome 5 Free";
	margin-right: .25em;
}
.global dl div dd:nth-of-type(1) a {
	font-size: 1.5em;
	font-weight: bold;
}
.global dl div dd:nth-of-type(1) a::before {
	font-size: .75em;
	font-weight: 900;
	content: var(--iconTel);
}
.global dl div dd:nth-of-type(2) {
	font-size: .75em;
	margin-top: .5em;
}
.global dl div dd:nth-of-type(2)::before {
	font-weight: 400;
	content: var(--iconTime);
}
.global dl>dd {
	display: flex;
}
.global dl>dd a {
	background: var(--mainBlue);
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	align-content: center;
	font-size: .9em;
	padding: 0 .5em;
	transition: .5s;
}
.global.downPage dl>dd a {
	color: #fff;
}
.global.downPage dl>dd a:hover {
	text-shadow: none;
}
.global dl>dd a::before {
	font-weight: 900;
	content: var(--iconMail);
	margin-right: 0;
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: .5em;
}
.global dl>dd a:hover {
	background: #fff;
}
.global.downPage dl>dd a:hover {
	color: var(--mainBlue);
	background: var(--mainBlue40);
}
/*	max-width: 1000px	*****************************************************************************/
@media (max-width: 1000px) {
	.global,
	.global a {
		color: var(--mainBlue);
	}
	.global label {
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--mainBlue);
		width: 10vw;
		height: 10vw;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999999;
		transition: .5s;
	}
	.global label span {
		width: 75%;
		height: 8%;
		position: relative;
	}
	.global label span::before,
	.global label span::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
	}
	.global label span::before {
		bottom: 300%;
	}
	.global label span::after {
		top: 300%;
	}
	.global label span,
	.global label span::before,
	.global label span::after {
		background: #fff;
		transition: .5s;
	}
	.global>#MenuOpen:checked + label {
		background: #fffd;
	}
	.global>#MenuOpen:checked + label span {
		background: #fff0;
	}
	.global>#MenuOpen:checked + label span::before,
	.global>#MenuOpen:checked + label span::after {
		background: var(--mainBlue);
	}
	.global>#MenuOpen:checked + label span::before {
		bottom: 0;
		transform: rotate(-315deg);
	}
	.global>#MenuOpen:checked + label span::after {
		top: 0;
		transform: rotate(315deg);
	}
	.global>div {
		width: 50%;
		height: calc(100vh - 10vw);
		overflow-y: scroll;
		background: #fffd;
		display: block;
		position: fixed;
		top: 10vw;
		bottom: 0;
		left: 100%;
		z-index: 9999;
	}
	.global.downPage>div {
		background: #fffd;
		box-shadow: none;
	}
	.global>#MenuOpen:checked + label + div {
		left: 50%;
	}
	.global ul {
		display: block;
		font-size: 1.4em;
		font-weight: 400;
		letter-spacing: .1em;
		margin: 2em 10%;
	}
	.global ul li {
		margin-left: 0;
		margin-bottom: .5em;
	}
	.global ul li a {
		display: block;
		border: 1px solid var(--mainBlue);
		text-align: center;
		padding: .75em 0;
		transition: .5s;
	}
	.global ul li a:hover {
		background: var(--mainBlue);
		color: #fff;
	}
	.global dl {
		margin-left: 0;
		margin: 0 10%;
		justify-content: space-between;
	}
	.global dl>dd a {
		color: #fff;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.global label {
		width: 20vw;
		height: 20vw;
	}
	.global>div {
		width: 95%;
		height: calc(100vh - 20vw);
		top: 20vw;
	}
	.global>#MenuOpen:checked + label + div {
		left: 5%;
	}
}



/*	first	************************************************************************************************************************************************************************************/
.first {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 24vw;
	position: relative;
}
.pageIndex .first {
	background-image: url(../img/kv.webp);
	height: 70vh;
}
.pageAbout .first {
	background-image: url(../img/kv_about.webp);
}
.pageBusiness .first {
	background-image: url(../img/kv_business.webp);
}
.pageStaff .first {
	background-image: url(../img/kv_staff.webp);
	background-position: center 30%;
}
.pageContact .first {
	background-image: url("../img/kv_contact.jpg");
	background-position: center bottom 15%;
}
.first::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 35%;
	background: var(--mainBlue40);
}
.pageIndex .first::before {
	height: 25%;
	background: linear-gradient(to top,var(--mainBlue80),transparent);
}
.first h1 {
	position: absolute;
	bottom: .5em;
	width: 100%;
	text-align: center;
	font-family: var(--fontSerif);
	font-weight: 200;
	color: #fff;
	font-size: 4.75vw;
	letter-spacing: .1em;
}
.pageIndex .first h1 {
	bottom: .5em;
	font-size: 4.5vw;
	letter-spacing: -.1em;
}
.first h1 br {
	display: none;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.first {
		height: 40vw;
	}
	.first::before {
		height: 25%;
	}
	.pageIndex .first {
		height: 75vh;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.first {
		height: 60vw;
	}
	.pageIndex .first {
		background-image: url(../img/kv_s.webp);
	}
	.first h1,
	.pageIndex .first h1 {
		font-size: 7.5vw;
		line-height: 1.1;
	}
	.first h1 br {
		display: inline;
	}
}



/*	main 	************************************************************************************************************************************************************************************/
main {
	padding: 0 0 0;
}
main>section {
	padding: 10em 5%;
	position: relative;
	overflow-x: hidden;
}
main>section h2 {
	color: var(--mainBlue);
	margin-bottom: 3em;
	text-align: center;
}
main>section h2 span {
	display: block;
}
main>section h2 span:first-child {
	font-family: var(--fontRaj);
	font-size: 2em;
	margin-bottom: .5em;
}
main>section h2 span:last-child {
	font-size: .6em;
	font-weight: 700;
}
main>section p {
	line-height: 2;
	letter-spacing: .1em;
}
main>section .link {
	margin-top: 2em;
}
main>section .link a {
	display: block;
	text-align: center;
	background: var(--mainBlue);
	color: #fff;
	font-size: .9em;
	padding: 1.25em 0;
	position: relative;
	border: 1px solid #fff;
	transition: .5s;
}
main>section .link a::before,
main>section .link a::after {
	content: "";
	display: block;
	background: #fff;
	width: 1em;
	height: .1em;
	position: absolute;
	left: 2.5%;
	top: calc(50% - .05em);
	transition: .5s;
}
main>section .link a::before {
	transform: rotate(45deg);
	transform-origin: right center;
}
main>section .link a::after {
	transform: rotate(-45deg);
	transform-origin: right center;
}
main>section .link a:hover {
	background: #fff;
	color: var(--mainBlue);
	border: 1px solid var(--mainBlue);
}
main>section .link a:hover::before,
main>section .link a:hover::after {
	background: var(--mainBlue);
	left: 95%;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	main>section {
		padding: 6em 5%;
	}
}



/*	.about 	************************************************************************************************************************************************************************************/
.about::before {
	content: "";
	display: block;
	position: absolute;
	left: 5%;
	bottom: 0;
	z-index: -1;
	background: url(../img/workman.webp) no-repeat center/cover;
	height: 100%;
	aspect-ratio: 706 / 1131;
}
.about p,
.about .link {
	margin-left: 45%;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.about::before {
		left: 0;
		height: auto;
		max-height: 100%;
		width: 45%;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.about::before {
		left: auto;
		right: -20%;
		width: auto;
		height: 100%;
	}
	.about h2 {
		text-shadow: 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff;
	}
	.about p,
	.about .link {
		margin-left: 0;
	}
	.about p {
		background: #fffc;
		padding: 1em 1.5em;
	}
}
/*	max-width: 400px	*****************************************************************************/
@media (max-width: 400px) {
	.about::before {
		right: -35%;
	}
}



/*	.business 	************************************************************************************************************************************************************************************/
.business {
	background: var(--mainBlue80);
	color: #fff;
}
.business::before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	background: url(../img/nomiss.webp) no-repeat center/cover;
	height: 100%;
	aspect-ratio: 1 / 1;
}
.business h2 {
	color: #fff;
}
.business p,
.business .link {
	width: 70%;
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.business p,
	.business .link {
		width: 100%;
	}
}



/*	.message 	************************************************************************************************************************************************************************************/
.message .flex {
	display: flex;
	align-items: flex-start;
}
.message .flex img {
	width: 45%;
	margin-right: 5%;
}
.message .flex p {
	margin-bottom: 1.5em;
}
.message .flex p.signature {
	margin-top: 1.5em;
	text-align: right;
	font-size: .8em;
}
.message .flex p.signature br {
	display: none;
}
.message .flex p.signature span {
	font-size: 1.75em;
	margin-left: .5em;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.message .flex p.signature br {
		display: inline;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.message .flex {
		display: block;
	}
	.message .flex img {
		width: 100%;
		margin: 0 auto 1em;
	}
}



/*	.recruit 	************************************************************************************************************************************************************************************/
.recruit {
	background: var(--mainBlue);
	color: #fff;
}
.recruit h2 {
	color: #fff;
}
.recruit ul {
	list-style: none;
	display: flex;
	flex-flow: wrap;
	height: 20em;
	overflow: hidden;
}
.recruit ul li {
	width: 50%;
	overflow: hidden;
	transform: scale(1.1) skewX(-15deg);
}
.recruit ul li:first-child {
	transform-origin: right;
}
.recruit ul li:last-child {
	transform-origin: left;
}
.recruit ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	transform: scale(1.1) skewX(15deg);
	position: relative;
	color: #fff;
	font-size: 2em;
	transition: .5s;
}
.recruit ul li:first-child a {
	background: url("../img/stf_k01.jpg") no-repeat center/cover;
	transform-origin: left;
}
.recruit ul li:last-child a {
	background: url(../img/stf_k02.jpg) no-repeat center/cover;
	transform-origin: right;
}
.recruit ul li a::before {
	content: "";
	display: block;
	background: var(--mainBlue40); 
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	transition: .5s;
}
.recruit ul li a:hover {
	color: var(--mainBlue);
}
.recruit ul li a:hover::before {
	background: #fffc; 
}
.recruit ul li a span {
	position: relative;
	z-index: 1;
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.recruit ul {
		display: block;
		height: auto;
	}
	.recruit ul li {
		width: 100%;
		transform: none;
		margin-bottom: 1em;
	}
	.recruit ul li a {
		height: auto;
		transform: none;
		font-size: 2em;
		padding: 2em 0;
		text-shadow: 0 0 .2em var(--mainBlue), 0 0 .2em var(--mainBlue);
	}
	.recruit ul li a::before {
		display: none;
	}
}



/*	.info 	************************************************************************************************************************************************************************************/
.info dl {
	width: 70%;
	margin: 0 auto;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	/* align-items: flex-start; */
	border-top: 1px solid #ddd;
}
.info dl dt,
.info dl dd {
	padding: 1.5em 0;
	line-height: 1.5;
	border-bottom: 1px solid #ddd;
	letter-spacing: .1em;
}
.info dl dt {
	width: 30%;
}
.info dl dd {
	width: 70%;
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.info dl {
		width: 100%;
	}
	.info dl dt,
	.info dl dd {
		width: 100%;
		text-align: center;
	}
	.info dl dt {
		border-bottom: none;
		padding-bottom: 0;
		font-size: .8em;
		line-height: 1;
	}
}



/*	.office 	************************************************************************************************************************************************************************************/
.office {
	background: var(--mainBlue20);
}
.office>div {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.office>div dl {
	width: 49%;
	margin-bottom: 4%;
}
.office>div dl dt {
	background: var(--mainBlue);
	color: #fff;
	padding: .75em 1em;
	margin-bottom: .5em;
	border-radius: 1.25em;
	text-align: center;
	font-weight: 700;
	font-size: 1.15em;
	letter-spacing: .1em;
}
.office>div dl dd {
	width: 90%;
	margin: 0 auto;
	font-size: .9em;
}
.office>div dl>div dd {
	margin-bottom: .5em;
	line-height: 1.4;
}
.office>div dl>div dd::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: .25em;
	color: var(--mainBlue);
}
.office>div dl>div dd:nth-of-type(1)::before {
	content: var(--iconMap);
}
.office>div dl>div dd:nth-of-type(2)::before {
	content: var(--iconTel);
}
.office>div dl>div dd:nth-of-type(3)::before {
	content: var(--iconFax);
}
.office>div dl dd iframe {
	border: none;
	width: 100%;
	aspect-ratio: 5 / 3;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.office>div dl {
		width: 100%;
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	.office>div dl dt {
		width: 100%;
	}
	.office>div dl>div {
		width: 43%;
		margin-left: 5%;
	}
	.office>div dl>div dd {
		margin-bottom: .75em;
	}
	.office>div dl>dd {
		width: 45%;
		margin-right: 5%;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.office>div dl>div,
	.office>div dl>dd {
		width: 90%;
		margin: 0 auto;
	}
	.office>div dl {
		margin-bottom: 15%;
	}
}



/*	.history 	************************************************************************************************************************************************************************************/
.history dl {
	width: 70%;
	margin: 0 auto;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: flex-start;
	border-top: 1px solid #ddd;
}
.history dl dt,
.history dl dd {
	padding: 1.5em 0;
	line-height: 1.5;
	border-bottom: 1px solid #ddd;
	letter-spacing: .1em;
}
.history dl dt {
	width: 30%;
}
.history dl dd {
	width: 70%;
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.history dl {
		width: 100%;
	}
	.history dl dt,
	.history dl dd {
		width: 100%;
		text-align: center;
	}
	.history dl dt {
		border-bottom: none;
		padding-bottom: 0;
		font-size: .8em;
		line-height: 1;
	}
	.history dl dd {
		padding: 1.5em 2em;
		text-align: left;
	}
}



/*	.businessGuide 	************************************************************************************************************************************************************************************/
.businessGuide h3 {
	font-family: var(--fontSerif);
	color: var(--mainBlue);
	font-weight: normal;
	font-size: 1.75em;
	text-align: center;
	margin-bottom: 1.5em;
}
.businessGuide h3 br {
	display: none;
}
.businessGuide>div {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.businessGuide>div dl {
	width: 49%;
	margin-bottom: 4%;
}
.businessGuide>div dl dt {
	border: .15em solid var(--mainBlue80);
	padding: .6em 1em;
	margin-bottom: .5em;
	border-radius: 1.25em;
	text-align: center;
	font-weight: 700;
	font-size: 1.15em;
	letter-spacing: .1em;
}
.businessGuide>div dl>dd,
.businessGuide>div dl>div {
	width: 90%;
	margin: 0 auto;
}
.businessGuide>div dl>dd {
	margin-bottom: .75em;
	aspect-ratio: 5 / 3;
}
.businessGuide>div dl>dd img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.businessGuide>div dl>div dd {
	margin-bottom: .75em;
	display: list-item;
	margin-left: 1.5em;
	line-height: 1.4;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.businessGuide h3 {
		font-size: 5vw;
		line-height: 1.4;
	}
	.businessGuide h3 br {
		display: inline;
	}
	.businessGuide>div dl {
		width: 100%;
		margin-bottom: 10%;
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
	}
	.businessGuide>div dl:nth-of-type(even) {
		flex-direction: row-reverse;
	}
	.businessGuide>div dl dt {
		width: 100%;
	}
	.businessGuide>div dl>dd {
		width: 45%;
		margin: 0 5%;
	}
	.businessGuide>div dl>div {
		width: 40%;
		margin-right: 5%;
	}
	.businessGuide>div dl:nth-of-type(even)>div {
		margin-right: 0;
		margin-left: 5%;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.businessGuide>div dl>dd,
	.businessGuide>div dl>div,
	.businessGuide>div dl:nth-of-type(even)>div {
		width: 90%;
		margin: 0 auto;
	}
	.businessGuide>div dl>dd {
		margin-bottom: .75em;
	}
}



/*	.voice 	************************************************************************************************************************************************************************************/
.voice {
	background: var(--mainBlue80);
}
.voice h2 {
	color: #fff;
}
.voice>div {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}
.voice>div dl {
	width: 49%;
	margin-bottom: 4%;
	background: #fff;
	border-radius: 1.4em;
	padding-bottom: 1.5em;
}
.voice>div dl>dt {
	background: var(--mainBlue);
	color: #fff;
	padding: .75em 1em;
	margin-bottom: 1em;
	border-radius: 1.25em;
	text-align: center;
	font-weight: 700;
	font-size: 1.15em;
	letter-spacing: .1em;
}
.voice>div dl>dd,
.voice>div dl>div {
	width: 90%;
	margin: 0 auto;
	font-size: .9em;
}
.voice>div dl>dd {
	aspect-ratio: 5 / 3;
	border-left: 1px solid var(--mainBlue);
}
.voice>div dl>dd img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.voice>div dl>div dt {
	color: var(--mainBlue);
	font-size: 1.2em;
	padding: 0 .5em .5em;
	border-left: 1px solid var(--mainBlue);
	border-bottom: 1px solid var(--mainBlue);
	margin-bottom: .5em;
}
.voice>div dl>div dd {
	line-height: 1.5;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.voice>div dl {
		width: 100%;
		margin-bottom: 10%;
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
	}
	.voice>div dl:nth-of-type(even) {
		flex-direction: row-reverse;
	}
	.voice>div dl>dt {
		width: 100%;
	}
	.voice>div dl>dd {
		width: 45%;
		aspect-ratio: auto;
		margin-left: 5%;
		border-left: none;
		border-right: 1px solid var(--mainBlue);
	}
	.voice>div dl>div {
		width: 100%;
		margin: 0 auto;
		padding: 0 2em;
	}
	.voice>div dl>div dt {
		padding: .5em 1em;
		border-left: none;
		margin-bottom: .75em;
		line-height: 1.4;
	}
	.voice>div dl>div dd {
		padding: 0 1.2em;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.voice>div dl>dd,
	.voice>div dl:nth-of-type(even)>dd {
		width: 90%;
		aspect-ratio: 5 / 3;
		margin: 0 auto;
		border-right: none;
		border-left: 1px solid var(--mainBlue);
	}
	.voice>div dl>div,
	.voice>div dl:nth-of-type(even)>div {
		width: 100%;
		margin: 0 auto;
	}
	.voice>div dl>div dt,
	.voice>div dl:nth-of-type(even)>div dt {
		padding: 0 1em .5em;
		border-left: 1px solid var(--mainBlue);
	}
	.voice>div dl>div dd,
	.voice>div dl:nth-of-type(even)>div dd {
		padding: 0;
	}
}



/*	.human 	************************************************************************************************************************************************************************************/
.human ul {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	list-style: none;
}
.human ul li {
	width: 31%;
	margin: 15% 0 3.5%;
	border: .15em solid var(--mainBlue20);
	border-radius: 1.25em;
	padding: 2.5em 2em 2em;
	position: relative;
}
.human ul li dl dt {
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 2vw;
	margin-bottom: .75em;
	padding-bottom: 7.5%;
	width: 15vw;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	top: -12vw;
	left: calc(50% - 15vw / 2);
}
.human ul li dl dt::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	border-radius: 50%;
	color: #fff;
	width: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	font-size: 7vw;
	padding-top: .4em;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.human ul li:nth-of-type(1) dl dt::before {	content: "\f530";}
.human ul li:nth-of-type(2) dl dt::before {	content: "\f2a2";}
.human ul li:nth-of-type(3) dl dt::before {	content: "\f017";}
.human ul li:nth-of-type(4) dl dt::before {	content: "\f2b5";}
.human ul li:nth-of-type(5) dl dt::before {	content: "\f21e";}
.human ul li:nth-of-type(6) dl dt::before {	content: "\f5b8";}
.human ul li:nth-of-type(odd) dl dt::before {
	background: var(--mainBlue);
	box-shadow: 0 .075em .15em var(--mainBlue40);
}
.human ul li:nth-of-type(even) dl dt::before {
	background: var(--mainRed);
	box-shadow: 0 .075em .15em var(--mainRed40);
}
.human ul li dl dd{
	line-height: 1.4;
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.human ul li {
		width: 48%;
		margin: 25% 0 0;
	}
	.human ul li dl dt {
		width: 25vw;
		left: calc(50% - 25vw / 2);
		top: -20vw;
		font-size: 3.25vw;
	}
	.human ul li dl dt::before {
		font-size: 12vw;
	}
}
/*	max-width: 400px	*****************************************************************************/
@media (max-width: 400px) {
	.human ul li {
		width: 100%;
		margin: 40% 0 0;
	}
	.human ul li dl dt {
		width: 40vw;
		left: calc(50% - 40vw / 2);
		top: -32.5vw;
		font-size: 6vw;
	}
	.human ul li dl dt::before {
		font-size: 18vw;
	}
}



/*	.interview 	************************************************************************************************************************************************************************************/
.interview {
	background: var(--mainBlue20);
}
.interview section {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	position: relative;
}
.interview section:nth-of-type(even) {
	flex-direction: row-reverse;
}
.interview section:not(:first-child) {
	margin-top: 7.5%;
}
.interview section::before {
	content: "";
	display: block;
	background: #fff;
	position: absolute;
	top: 5%;
	bottom: -5%;
	left: 5%;
	right: 0;
}
.interview section:nth-of-type(even)::before {
	left: 0;
	right: 5%;
}
.interview section figure {
	width: 50%;
	position: relative;
	background: #fff;
	box-shadow: 0 .5em 1em var(--mainBlue40);
}
.interview section figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.interview section figure figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--mainBlue80);
	color: #fff;
}
.interview section figure figcaption ul {
	list-style: none;
	padding: 1em;
	letter-spacing: .1em;
	text-align: center;
}
.interview section figure figcaption ul li {
	display: inline;
}
.interview section figure figcaption ul li:not(:first-child)::before {
	content: " / ";
}
.interview section dl {
	width: 44%;
	margin: 5% 3% 0;
	position: relative;
	z-index: 1;
	border-top: 1px solid #ddd;
	display: flex;
	flex-flow: wrap;
	align-content: flex-start;
}
.interview section dl dt,
.interview section dl dd {
	border-bottom: 1px solid #ddd;
	padding: 1em 0;
	line-height: 1.4;
}
.interview section dl dt {
	min-width: 40%;
	white-space: nowrap;
}
.interview section dl dd {
	width: 60%;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.interview section:not(:first-child) {
		margin-top: 15%;
	}
	.interview section figure {
		width: 95%;
	}
	.interview section dl {
		width: 85%;
		margin: 5% 0 0 10%;
	}
	.interview section:nth-of-type(even) dl {
		margin: 5% 10% 0 0;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.interview section:not(:first-child) {
		margin-top: 25%;
	}
	.interview section dl dt,
	.interview section dl dd {
		width: 100%;
	}
	.interview section dl dt {
		white-space: normal;
		padding: 1em 0 0;
		border-bottom: none;
	}
	.interview section dl dt::before {
		content: "★";
	}
	.interview section dl dd {
		margin-left: 1em;
	}
}




/*	.contact	************************************************************************************************************************************************************************************/
.contact p.intro {
	text-align: center;
	margin-bottom: 7.5%;
}
.contact>dl {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 3% 5%;
	border: .15em solid #ddd;
	margin-bottom: 7.5%;
	color: var(--mainBlue);
}
.contact>dl dt {
	font-size: 1.2em;
	font-weight: bold;
}
.contact>dl dd a {
	color: var(--mainBlue);
	font-size: 4vw;
	font-weight: bold;
}
.contact>dl dd a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: var(--iconTel);
	font-size: .5em;
}
.contact form {
	background: var(--mainBlue20);
	padding: 5% 0;
}
.contact table {
	width: 70%;
	margin: 0 auto 4%;
}
.contact table caption {
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	color: var(--mainBlue);
	margin-bottom: 1em;
}
.contact table tr:first-child>* {
	border-top: 1px solid #aaa;
}
.contact table tr>* {
	border-bottom: 1px solid #aaa;
	padding: 2.5% 0;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}
.contact table tr th label {
	display: block;
	padding: .25em 0;
}
.contact table tr th label span {
	font-size: .7em;
	display: block;
	margin-top: .75em;
}
.contact table tr td span {
	color: #fff;
	font-weight: bold;
	display: block;
	width: 3em;
	padding: .25em 0;
	text-align: center;
	border-radius: .25em;
}
.contact table tr td span.req {
	background: var(--mainRed);
}
.contact table tr td span.any {
	background: var(--mainBlue);
}
.contact table tr td ul {
	list-style: none;
	display: flex;
	flex-flow: wrap;
	padding: .25em 0;
}
.contact table tr td ul li {
	margin-right: 1em;
}
.contact table tr td ul li input[type="radio"],
.contact table tr td ul li input[type="checkbox"] {
	margin-right: .4em;
	transform: scale(1.5);
}
.contact table tr td input[type="text"],
.contact table tr td input[type="tel"],
.contact table tr td input[type="email"],
.contact table tr td textarea {
	border: none;
	width: 100%;
	padding: .75em;
	border-radius: .5em;
	font-size: 1rem;
	background: #fff;
	transition: 1s;
}
.contact table tr td input[type="text"]:focus,
.contact table tr td input[type="tel"]:focus,
.contact table tr td input[type="email"]:focus,
.contact table tr td textarea:focus {
	outline: none;
	background: #ffc;
}
.contact table tr td input::placeholder,
.contact table tr td textarea::placeholder {
	color: var(--mainBlue40);
}
.contact table tr td textarea {
	resize: vertical;
	height: 15vw;
}
.contact table tr:last-child td {
	text-align: center;
}
.contact table tr:last-child td input {
	color: #fff;
	background: var(--mainBlue);
	border: none;
	padding: 1em 2em;
	font-size: 1rem;
	letter-spacing: .1em;
	border-radius: .5em;
	cursor: pointer;
	box-shadow: 0 .2em .5em #aaa;
	transition: .5s;
}
.contact table tr:last-child td input:hover {
	background: var(--mainRed);
}
.contact table tr:last-child td input:active {
	transform: translateY(.15em);
	box-shadow: none;
}
.contact p.privacy {
	width: 70%;
	margin: 0 auto;
	padding: 1.5em 2.5em;
	background: #fff;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.contact p.intro {
		text-align: left;
		width: 70%;
		margin: 0 auto 7.5%;
	}
	.contact>dl {
		width: 80%;
		margin: 0 auto 7.5%;
	}
	.contact>dl dt {
		width: 100%;
		text-align: center;
		margin: 0 auto 1em;
	}
	.contact table {
		width: 90%;
	}
	.contact p.privacy {
		width: 90%;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.contact>dl dt {
		margin-bottom: .75em;
	}
	.contact>dl dd {
		width: 100%;
		text-align: center;
	}
	.contact>dl dd:first-of-type {
		margin-bottom: .75em;
	}
	.contact>dl dd a {
		font-size: 8vw;
	}
	.contact table tbody {
		display: block;
		border-top: 1px solid #aaa;
	}
	.contact table tr {
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
		border-bottom: 1px solid #aaa;
	}
	.contact table tr:last-of-type {
		justify-content: center;
	}
	.contact table tr:first-child>* {
		border-top: none;
	}
	.contact table tr>*,
	.contact table tr:first-child>* {
		display: block;
		border-bottom: none;
	}
	.contact table tr th {
		width: 80%;
		font-weight: bold !important;
		color: var(--mainBlue);
	}
	.contact table tr th label span {
		display: inline;
		margin-top: 0;
		margin-left: 1em;
		font-weight: normal;
	}
	.contact table tr td ul li input[type="radio"],
	.contact table tr td ul li input[type="checkbox"] {
		margin: 0 1em;
		transform: scale(2.5);
	}
	.contact table tr td:nth-of-type(2) {
		width: 100%;
		padding: 0 0 2.5%;
	}
	.contact table tr td ul {
		line-height: 2.5;
	}
	.contact table tr td textarea {
		height: 30vh;
	}
}




/*	aside	************************************************************************************************************************************************************************************/
aside ul {
	display: flex;
	list-style: none;
}
aside ul li {
	width: 20%;
	flex-grow: 1;
	transition: .5s;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
aside ul li:hover {
	flex-grow: 3;
}
aside ul li.rec {
	background-image: url(../img/stf_k01.webp);
}
aside ul li.stf {
	background-image: url(../img/stf_602.webp);
}
aside ul li.eishin {
	background-image: url(../img/inf_img_01.webp);
}
aside ul li a {
	display: block;
	color: #fff;
	font-size: 1.4em;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	padding: 1.5em 0;
	letter-spacing: .1em;
	background: var(--mainBlue80);
	text-shadow: 0 .15em .15em #0008;
	outline: 1px solid #fff;
	outline-offset: -.25em;
	transition: .5s;
}
aside ul li a:hover {
	background: transparent;
}
aside ul li a:active {
	background: var(--mainRed80);
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	aside ul {
		flex-flow: wrap;
	}
	aside ul li {
		width: 100%;
	}
	aside ul li:hover {
		flex-grow: 1;
	}
}



/*	footer	************************************************************************************************************************************************************************************/
footer {
	padding: 3em 0 0;
	position: relative;
	overflow: hidden;
}
footer::before {
	content: "";
	display: block;
	background: url(../img/logo.webp) no-repeat center/cover;
	width: 50%;
	aspect-ratio: 1000 / 406;
	position: absolute;
	z-index: -1;
	right: .5em;
	top: .5em;
	opacity: .25;
}
footer,
footer a {
	color: var(--mainBlue);
}
footer h2 {
	font-size: 1.2em;
	margin: 0 3% 1em;
	padding-bottom: 1em;
	border-bottom: 1px dotted var(--mainBlue);
}
footer .footOffice {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	margin: 0 3% 3em;
}
footer .footOffice dl {
	width: 18%;
}
footer .footOffice dl:first-child {
	border-left: none;
}
footer .footOffice dl dt {
	font-weight: bold;
	font-size: .9em;
	line-height: 1.3;
	margin-bottom: .5em;
}
footer .footOffice dl dd {
	margin-left: 1em;
	text-indent: -1em;
	line-height: 1.3;
	font-size: .8em;
}
footer .footOffice dl dd::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: .25em;
}
footer .footOffice dl dd:nth-of-type(1)::before {
	content: var(--iconMap);
}
footer .footOffice dl dd:nth-of-type(2)::before {
	content: var(--iconTel);
}
footer .footOffice dl dd:nth-of-type(3)::before {
	content: var(--iconFax);
}
footer .copyright {
	text-align: center;
	font-size: 10px;
	width: 100%;
	background: var(--mainBlue);
	color: #fff;
	padding: 3em 0;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	footer::before {
		width: 75%;
		top: auto;
		bottom: 6em;
	}
	footer .footOffice {
		justify-content: flex-start;
	}
	footer .footOffice dl {
		width: 30%;
		margin-left: 5%;
		margin-bottom: 5%;
	}
	footer .footOffice dl:nth-child(3n+1) {
		margin-left: 0;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	footer::before {
		width: 90%;
		top: 1em;
		bottom: auto;
	}
	footer h2 {
		margin: 0 10% 1em;
	}
	footer .footOffice {
		margin: 0 10% 3em;
	}
	footer .footOffice dl {
		width: 100%;
		margin-left: 0;
		padding-bottom: 5%;
		border-bottom: 1px dotted var(--mainBlue);
	}
}



/*	pageTop	************************************************************************************************************************************************************************************/
.pageTop {
	position: fixed;
	right: 0;
	bottom: 1em;
	z-index: 1000000;
	transform: translateX(100%);
	transition: .5s;
}
.pageTop.inPage {
	transform: translateX(-25%);
}
.pageTop a {
	display: block;
	color: var(--mainBlue);
	text-decoration: none;
	text-align: center;
	font-size: 2vw;
	line-height: 2;
	width: 2em;
	background: #fff;
	box-shadow: 0.1em 0.1em 0.1em #666;
}
/*	max-width: 900px	*****************************************************************************/
@media (max-width: 900px) {
	.pageTop a {
		font-size: 4vw;
	}
}
/*	max-width: 600px	*****************************************************************************/
@media (max-width: 600px) {
	.pageTop a {
		font-size: 8vw;
	}
}