@charset "UTF-8";
/* CSS Document */

html, 
html * {
	padding: 0;
	margin: 0;
	font-family: 'Hind', 'Noto Sans JP', "Hiragino Sans", "游明朝", sans-serif;
	font-weight: 400;
    scroll-behavior: smooth;
}

header {
	padding: 0;
}

a:visited, a:link, a:active
{
    color: #000000;
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

footer {
	padding: 20px 30px;
}

body {
	margin-left: auto;
	margin-right: auto;
	background: #ffffff;
	line-height: 1.8;
}


h1 {
	font-size: 3em;
	text-transform: uppercase;
}
h1 a{
	font-size: 0px;
}

h2 {
	font-size: 1.6em;
	padding-bottom: 20px;
}

p {
	font-size: 0.8em;
}

.bold{
	font-weight: 700;
	font-weight: bold;
	text-transform: none;
}

.subtitle{
	text-align: center;
	margin: 0 auto;
	max-width: 960px;
	padding: 80px 20px;
}

.no-bottom{
	padding-bottom: 0 !important;
}

.button {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
}

.footer-text {
	font-size: 0.8em;
	text-align: center;
	margin: 0 auto;
}

#recruit ul{
	display: flex;
	justify-content: center;
	max-width: 90%;
	margin: 0 auto;
}
	#recruit ul li{
		display: flex;
		margin: 40px 0;
		padding: 0 10px;
	}
	#recruit ul li.item01{
		width: 40%;
	}
	#recruit ul li.item02{
		width: 40%;
	}
		#recruit ul li a{
			margin: 0 auto;
		}
		#recruit ul li img{
			border: 2px solid #000;
			width: 100%;
		}

	.tel{
		font-size: 2.0em;
		font-weight: 700;
	}
	.mailto{
		font-size: 1.5em;
		font-weight: 700;
	}

	/* spのみ画像が有効 */
	.img-sp {
		display: block;
	}
	.img-tab,
	.img-pc {
		display: none;
	}	


/*Tablet View*/

@media (min-width: 768px){
	body {
/*		max-width: 778px;
		*/
	}

	h1 {
		font-size: 3em;
		text-transform: uppercase;
	}
	h1 a{
		font-size: 0px;
	}

	h2 {
		font-size: 2em;
		padding-bottom: 20px;
	}

	p {
		font-size: 1em;
	}
	.desktop-hidden {
		display: none;
	}

	/* Tabletのみ画像が有効 */
	.img-tab {
		display: block;
	}
	.img-pc,
	.img-sp {
		display: none;
	}	
	
	/* スマホでタップした時だけ電話発信を有効にする */
	a[href^="tel:"]{
		pointer-events: none;
	}
}

/*Desktop View*/

@media (min-width: 1024px){
	
	body {
/*		max-width: 1200px;
		*/
	}
	h1 {
		font-size: 3em;
		text-transform: uppercase;
	}
	h1 a{
		font-size: 0px;
	}

	h2 {
		font-size: 2em;
		padding-bottom: 20px;
	}

	p {
		font-size: 1em;
	}
	.desktop-hidden {
		display: none;
	}

	/* Desktopのみ画像が有効 */
	 .img-pc {
		 display: block;
	}
	.img-tab,
	.img-sp {
		display: none;
	}	

}

/*ローディングアニメーション*/
.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #E6E4E0;
	z-index: 1;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

