@charset "utf-8";





/* common	***********************************************************************************************************************************************************************************************************************************************************************/
:root {
	--colorText: #454545;
	--colorMain: #039;
	--colorBG: #faf7ef;
	--colorLG: #95e7a5;
	--colorLB: #85c6f4;
	--colorAdd: #f3fafe;
	--colorAddB: #bde4fc;
	--colorInfo: #d1ecf1;
	--colorA: #308bd6;
	--colorShadow: #0009;
}
*,*::before,*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
}
body {
	color: var(--colorText);
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	overflow-wrap: break-word;
	background: url(../_img/bg.webp);
}
img {
	vertical-align: bottom;
	max-width: 100%;
	max-height: 100%;
}
a {
	display: inline;
	color: var(--colorA);
	transition: .5s;
}
/*	min 481px	*****************************************************************/
@media (min-width: 481px) {
	body {
		font-size: 18px;
	}
}




/* header	***********************************************************************************************************************************************************************************************************************************************************************/
header {
	padding-top: 50px;
	font-size: 16px;
}
header h1 {
	background: var(--colorBG);
	padding: 2.5% 4% 4%;
	text-align: center;
}
/*	min 1024px	*****************************************************************/
@media (min-width: 1024px) {
	header {
		padding-top: 0;
		display: flex;
		flex-flow: column;
		align-items: center;
	}
	header>* {
		width: 100%;
	}
}




/* .slider	***********************************************************************************************************************************************************************************************************************************************************************/
.slider div a {
	display: block;
	position: relative;
}
.slider div a p {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000a;
	color: #fff;
	padding: .5em;
}
.slider img {
	width: 100%;
}




/* nav.global	***********************************************************************************************************************************************************************************************************************************************************************/
nav.global {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	padding: 3px 2.5%;
	background: #fff;
	box-shadow: 0 0 5px darkgrey;
}
nav.global>ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
nav.global>ul li.home a::before {
	content: "\f015";
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
nav.global>ul li .mark {
	display: flex;
	flex-flow: column;
	align-items: center;
	text-decoration: none;
	color: var(--colorText);
}
nav.global>ul li .mark>span:last-of-type {
	font-size: 1rem;
	margin-top: .75em;
}
nav.global>ul li.logo {
	height: 44px;
	text-align: center;
}
.navigation #NavCheck {
	display: none;
}
.navigation .mark>span:first-of-type {
	width: 1em;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.navigation .mark>span:first-of-type span,
.navigation .mark>span:first-of-type span::before,
.navigation .mark>span:first-of-type span::after {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--colorText);
	transition: .3s;
}
.navigation .mark>span:first-of-type span::before,
.navigation .mark>span:first-of-type span::after {
	content: "";
	position: absolute;
	left: 0;
}
.navigation .mark>span:first-of-type span::before {
	top: 2px;
}
.navigation .mark>span:first-of-type span::after {
	bottom: 2px;
}
.navigation.open>.mark>span:first-of-type span {
	background: transparent;
}
.navigation.open>.mark>span:first-of-type span::before {
	top: calc(50% - 1px);
	transform: rotate(45deg);
}
.navigation.open>.mark>span:first-of-type span::after {
	bottom: calc(50% - 1px);
	transform: rotate(-45deg);
}
.navigation ul {
	background: var(--colorBG);
	position: fixed;
	top: 0;
	left: -85%;
	width: 85%;
	z-index: 10001;
	padding: 0 1em;
	list-style: none;
	transition: .3s;
}
.navigation.open>ul {
	left: 0;
}
.navigation ul span {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	height: 7.5%;
}
.navigation ul span::before {
	content: "\f00d";
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.navigation ul li a {
	display: block;
	background: var(--colorLG);
	text-decoration: none;
	padding: .75em .5em;
	margin-bottom: .25em;
}
.navBG {
	background: #0009;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 9998;
}
/*	min 1024px	*****************************************************************/
@media (min-width: 1024px) {
	nav.global {
		position: static;
		padding: 0;
		box-shadow: none;
		order: -1;
	}
	nav.global>ul li.home,
	nav.global>ul li.logo {
		display: none;
	}
	.navigation {
		width: 100%;
	}
	.navigation .mark {
		display: none;
	}
	.navigation ul {
		background: var(--colorLG);
		position: static;
		width: 100%;
		padding: .25em 0;
		display: flex;
		justify-content: center;
	}
	.navigation ul::before {
		display: none;
	}
	.navigation ul li {
		width: 16%;
		margin: 0 .25em;
	}
	.navigation ul li a {
		border: dashed 2px #fff;
		color: var(--colorText);
		padding: .5em 0;
		margin-bottom: 0;
		text-align: center;
	}
}




/* .contents	***********************************************************************************************************************************************************************************************************************************************************************/
.contents {
	background: #fff;
	padding: 5% 5% 10%;
	max-width: 1256px;
	margin: 0 auto;
}
.info {
	background: var(--colorInfo);
	border-radius: 4px;
}
.info a {
	display: block;
	padding: 1.5em 1em;
}
.info a img {
	margin-top: 2.5%;
}




/* main	***********************************************************************************************************************************************************************************************************************************************************************/
main {
	margin-bottom: 10%;
}
main h2 {
	font-size: 20px;
	padding: 0.6em 0.8em;
	margin-bottom: 1.5em;
	line-height: 1.25;
}
main>section:not(:last-of-type) {
	margin-bottom: 3em;
}
/*	min 481px	*****************************************************************/
@media (min-width: 481px) {
	main h2 {
		font-size: 26px;
		padding: 0.6em 0;
	}
}
/*	min 835px	*****************************************************************/
@media (min-width: 835px) {
	main h2 br {
		display: none;
	}
}




/* aside	***********************************************************************************************************************************************************************************************************************************************************************/
aside .info {
	margin-bottom: 3em;
}
aside address {
	background: var(--colorAdd);
	border: 1px solid var(--colorAddB);
	border-radius: 4px;
	font-style: normal;
	padding: .5em .5em 1em;
}
aside address::before {
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f05a";
	color: var(--colorLB);
	display: block;
	text-align: center;
	margin-bottom: 3%;
}
aside address ul {
	list-style: none;
}
aside address ul li:not(:last-child) {
	margin-bottom: 3%;
}
aside address ul li dl dt {
	margin-bottom: 3%;
}
/*	min 481px	*****************************************************************/
@media (min-width: 481px) {
	aside address {
		display: flex;
		align-items: center;
		padding: 1.5em 1em;
	}
	aside address::before {
		margin-bottom: 0;
		font-size: 34px;
		padding-right: .5em;
		margin-right: .5em;
		border-right: 1px solid var(--colorLB);
	}
	aside address ul li {
		line-height: 1.25;
	}
}




/* .about	***********************************************************************************************************************************************************************************************************************************************************************/
.about h3 {
	background: var(--colorLG);
	box-shadow: 0px 0px 0px 5px var(--colorLG);
	border: dashed 2px #fff;
	padding: 0.4em 1em;
	margin: 0 -5px 2em;
	font-size: 20px;
	color: var(--colorText);
	text-align: center;
	line-height: 1.25;
	border-radius: 2px;
	position: relative;
}
.about h3::after {
	position: absolute;
	content: '';
	left: -7px;
	top: -7px;
	border-width: 0 0 15px 15px;
	border-style: solid;
	border-color: #fff #fff #75c785;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
.about p {
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 2em;
}
.about ul {
	list-style: none;
	text-align: center;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.about ul li:not(:last-child) {
	margin-bottom: 2em;
}
.about ul li a {
	display: block;
}
.about ul li a img {
	margin-bottom: 3%;
}
/*	min 835px	*****************************************************************/
@media (min-width: 835px) {
	.about ul {
		max-width: none;
		display: flex;
		justify-content: space-between;
	}
	.about ul li {
		width: 48%;
		display: flex;
	}
	.about ul li:not(:last-child) {
		margin-bottom: 0;
	}
	.about ul li a {
		display: flex;
		flex-flow: column;
		justify-content: space-between;
	}
}




/* .news	***********************************************************************************************************************************************************************************************************************************************************************/
.news h3 {
	background: var(--colorLB);
	padding: 0.3em 1em;
	color: #fff;
	border-radius: 10px 0 0 10px;
	font-size: 20px;
	margin: 0 -10px 2em;
}
.news ul {
	list-style: none;
	margin-bottom: 2em;
}
.news ul li {
	background: #fff;
	box-shadow: 0 1px 3px var(--colorShadow);
}
.news ul li:not(:last-child) {
	margin-bottom: 2%;
}
.news ul li a {
	display: block;
	color: var(--colorText);
	text-decoration: none;
	padding: .5em;
}
.news ul li a figure {
	display: flex;
	justify-content: space-between;
}
.news ul li a figure img {
	width: 120px;
	aspect-ratio: 240/135;
	object-fit: cover;
}
.news ul li a figure figcaption {
	width: calc(100% - 120px);
	padding: 0 .5em;
	line-height: 1.25;
}




/* .recruit	***********************************************************************************************************************************************************************************************************************************************************************/
.recruit {
	background: var(--colorBG);
	border: .25em solid var(--colorLB);
	border-radius: 1em;
	padding: .5em;
}
.recruit h3 {
	background: var(--colorLB);
	color: #fff;
	font-size: 1em;
	text-align: center;
	border-radius: .5em;
	padding: .75em 0;
	margin-bottom: .75em;
}
.recruit h3 span {
	font-size: 1.6em;
}
.recruit figure {
	text-align: center;
}
.recruit figure figcaption {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: .75em;
}
.recruit figure figcaption br {
	display: none;
}
.recruit ul {
	list-style: none;
	position: relative;
}
.recruit ul li:not(:last-child) {
	background: var(--colorLG);
	border-radius: .5em;
}
.recruit ul li {
	margin-bottom: .5em;
}
.recruit ul li dl {
	padding: 1em;
	display: flex;
}
.recruit ul li dl div {
	padding-left: 1.5em;
}
.recruit ul li dl dt::after {
	content: "：";
}
.recruit ul li dl dd {
	display: list-item;
	list-style: disc;
}
.recruit ul li dl dd:not(:last-child) {
	margin-bottom: .25em;
}
.recruit ul li:last-of-type {
	position: absolute;
	top: 10%;
	right: -5%;
	width: 40%;
}
.recruit>dl {
	background: #fff;
	border-radius: .5em;
	padding: 1em;
}
.recruit>dl dt {
	margin-bottom: .25em;
}
/*	min 835px	*****************************************************************/
@media (min-width: 835px) {
	.recruit {
		padding: 1em;
	}
	.recruit figure {
		display: flex;
		flex-flow: row-reverse;
		justify-content: center;
		align-items: flex-start;
	}
	.recruit figure figcaption {
		margin-bottom: 0;
		margin-left: 1em;
		font-size: 1em;
		background: var(--colorLB);
		color: #fff;
		width: 8em;
		aspect-ratio: 1/1;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		line-height: 1.4;
	}
	.recruit figure figcaption br {
		display: inline;
	}
	.recruit figure img {
		width: calc(100% - 10em);
	}
	.recruit ul {
		display: flex;
		margin-bottom: .5em;
	}
	.recruit ul li {
		margin-bottom: 0;
	}
	.recruit ul li:not(:last-child) {
		flex-grow: 1;
	}
	.recruit ul li:nth-child(-n+2) {
		margin-right: 1em;
	}
	.recruit ul li dl {
		flex-flow: column;
	}
	.recruit ul li dl dt {
		border-bottom: 1px solid #fff;
		padding-bottom: .5em;
		margin-bottom: .5em;
	}
	.recruit ul li dl dt::after {
		display: none;
	}
	.recruit ul li:last-of-type {
		top: auto;
		bottom: 70%;
	}
	.recruit>dl {
		display: flex;
		justify-content: center;
	}
	.recruit>dl dt {
		margin-bottom: 0;
		margin-right: 1em;
	}
}
/*	min 1024px	*****************************************************************/
@media (min-width: 1024px) {
	.recruit ul li:last-of-type {
		width: 30%;
	}
}




/* footer	***********************************************************************************************************************************************************************************************************************************************************************/
footer {
	background: var(--colorLG);
	margin-top: 10%;
	padding: 5%;
	text-align: center;
	font-size: 14px;
}
footer h2 {
	height: 150px;
	margin-bottom: 5%;
}
footer nav {
	margin-bottom: 5%;
}
footer nav ul {
	list-style: none;
	display: flex;
	flex-flow: wrap;
	max-width: 400px;
	margin: 0 auto;
}
footer nav ul li {
	width: 50%;
}
footer nav ul li a {
	color: var(--colorText);
	text-decoration: none;
	line-height: 2;
}
/*	min 835px	*****************************************************************/
@media (min-width: 835px) {
	footer {
		padding: 42px;
	}
	footer h2 {
		margin-bottom: 42px;
	}
	footer nav {
		margin-bottom: 42px;
	}
	footer nav ul {
		justify-content: center;
	}
	footer nav ul li {
		width: auto;
		margin: 0 .75em;
	}
}




/*	.pageTop	***********************************************************************************************************************************************************************************************************************************************/
.pageTop {
	list-style: none;
	position: fixed;
	bottom: 10px;
	left: 0;
	right: 0;
	overflow: hidden;
	opacity: 0;
	transition: .5s;
}
.pageTop.show {
	opacity: 1;
}
.pageTop li {
	width: 40px;
	margin-right: 10px;
	margin-left: auto;
}
.pageTop li a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	background: var(--colorLG);
	width: 40px;
	aspect-ratio: 1/1;
	border: 2px solid #fff;
	border-radius: 5px;
}
.pageTop li a::before {
	content: "\f102";
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.pageTop li a span {
	display: none;
}