@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Sawarabi+Gothic&display=swap');

/* ========BASIC======== */
html * { max-height:1000000px; }

html {
   overflow-y:scroll;
   height:100%;
}

body {
   margin:0;
   padding:0;
   line-height:1.3;
   letter-spacing:1px;
/*   font-family: "Sawarabi Gothic", sans-serif; */
   font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
   font-weight: 500;
   font-size:16px;
   font-size:1.1vw;
   color:#000;
   background:#fff;
}

@media screen and (max-width:1200px){
	body {
		font-size:16px;
	}
}

#loading {
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	min-height:600px;
/*
	background-image:linear-gradient(135deg ,#026 ,#7cf 50% ,#026);
*/
	background-color: #fff;
	z-index:1000;
}


#bodytop {
	position:relative;
	width:100%;
	min-width:1200px;
	overflow:hidden;
}

.submenu-hidden {
	overflow:hidden !important;
}


.font-noto {
	font-family: "Noto Serif JP", serif;
}

.font-mplus {
	font-family: "M PLUS 1p", sans-serif;
}

.font-sawarabi {
	font-family: "Sawarabi Gothic", sans-serif;
}


br {
   letter-spacing:normal;
}

.dfixed {
	overflow:hidden;
}

.dnone {
	display:none;
}

.font-bold {
	font-weight: bold;
}

.font-bold2 {
	font-weight: 900;
}

a {
   color:#00a;
   text-decoration:none;
}

a:hover {
   color:#00a;
   text-decoration:underline;
}

.flex1 { flex:1; }
.flex2 { flex:2; }
.flex3 { flex:3; }
.flex4 { flex:4; }
.flex5 { flex:5; }
.flex6 { flex:6; }
.flex7 { flex:7; }
.flex8 { flex:8; }
.flex9 { flex:9; }
.flex10 { flex:10; }
.flex11 { flex:11; }
.flex12 { flex:12; }

.w1 { width:10%; }
.w2 { width:20%; }
.w3 { width:30%; }
.w4 { width:40%; }
.w5 { width:50%; }
.w6 { width:60%; }
.w7 { width:70%; }
.w8 { width:80%; }
.w9 { width:90%; }
.w10 { width:100%; }

.width100 { width:100px; }
.width200 { width:200px; }
.width300 { width:300px; }
.width400 { width:400px; }
.width500 { width:500px; }
.width600 { width:600px; }
.width700 { width:700px; }
.width800 { width:800px; }
.width900 { width:900px; }
.width1000 { width:1000px; }
.width1100 { width:1100px; }
.width1200 { width:1200px; }

img {
   max-width:100%;
   border:0;
   vertical-align:bottom;
}

h1,h2,h3,h4,h5,h6 {
   margin:0;
}

.btn-blank {
	border:1px solid #ced4da;
}


::placeholder {
	color: #c6c6c6 !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
   -webkit-appearance: none;
   margin: 0;
}


.checkbtn:before {
	content: "\f0c8";
	font-family: "Font Awesome 6 Free";
	font: var(--fa-font-regular);
	color:#999;
}

.checkbtn-check:before {
	content: "\f14a";
	font-family: "Font Awesome 6 Free";
	font: var(--fa-font-solid);
	color:#009;
}


.radiobtn:before {
	content: "\f111";
	font-family: "Font Awesome 6 Free";
	font: var(--fa-font-regular);
	color:#999;
}

.radiobtn-check:before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font: var(--fa-font-solid);
	color:#009;
}



#overlay-button {
  position: fixed;
  right: 2em;
  top: 3em;
  padding: 26px 11px;
  z-index: 50;
  cursor: pointer;
  user-select: none;
  background-color:rgba(255,255,255,0.6);
  border:3px solid rgba(0,0,0,0.5);
  border-radius:32px;
}

#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: rgba(0,0,0,0.6);
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}

#overlay-button span:before {
  top: -10px;
  visibility: visible;
}

#overlay-button span:after {
  top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: rgba(0,0,0,0.9);
}

 input[type=checkbox]#overlay-input {
  display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
  display:block;
  width: 100vw;
  height: 100vh;
  opacity:1;
  overflow:auto;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
  background-color: #555;

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: #555;
}

#overlay {
  position: fixed;
  top:0;
  right:0;
  width: 0;
  height: 0;
  padding:10px 5px;
  background-color:#fff;
  z-index: 40;
  overflow:hidden;
  opacity:0;
  transition: all .3s;
}

#overlay.active {

}

#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}

#overlay ul li {
  padding: 1em;
}

#overlay ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
}

#overlay ul li a:hover {
  color: #000!important;
}


.headermenu01 ,.headermenu02 ,.headermenu03 {
	position:relative;
	display:flex;
	justify-content:center;
	align-items:center;
	width:360px;
	height:120px;
	transition: 0.3s;
}

.headermenu01:hover ,.headermenu02:hover {
	box-shadow:0 0 6px 2px #0028;
	text-decoration:none;
}

.headermenu01 {
	background:#00a url(../images/menu01_bg.jpg) 50% 50% no-repeat;
	background-size:cover;
}

.headermenu02 {
	background:#00a url(../images/menu02_bg.jpg) 50% 50% no-repeat;
	background-size:cover;
}

.headermenu03 {
	background:#00a url(../images/menu03_bg.jpg) 50% 50% no-repeat;
	background-size:cover;
}

.mainmenutitle {
	color:#fff;
	font-weight:bold;
	font-size:1.7em;
	text-align:center;
	text-shadow:0 0 5px #000;
}

.recruit_icon {
	display:block;
	width:100%;
	max-width:340px;
}

.contact_icon {
	display:block;
	width:100%;
	max-width:340px;
}

.menu-a {
	flex:1;
	display:block;
	margin:5px;
	padding:5px;
	text-align:center;
	border-bottom:2px dotted #028;
	color:#333;
}

.menu-a:hover {
	text-decoration:none;
}




.prcmt {
	position:fixed;
	top:5px;
	left:5px;
	width:70%;
	font-weight:bold;
	color:#fff;
	text-shadow:0 0 5px #000;
	font-size:0.9rem;
	z-index:10;
}


/* ========TEMPLATE LAYOUT======== */
#top {
   min-width:1200px;
   width:100%;
   min-height:100vh;
   margin:0 auto;
}

#contents {
   width:100%;
   min-width:1200px;
   height: calc(100vh - 50px):
   overflow:auto;
}

#pageTop {
   clear:both;
}



/* ========MENU CUSTOMIZE======== */
#menu {
	position:absolute;
	top:0;
	right:0;
	padding:5px;
	z-index:10;
}

#menu ul {
   display:flex;
   flex-wrap:wrap;
   list-style-type: none;
   margin:0;
   padding:0;
}

#menu li {
   display:block;
   margin:2px;
}

#menu li span {
   display:block;
}

#menu ul li a {
	position:relative;
	display:block;
	padding:10px 15px;
	text-align:center;
	white-space:nowrap;
	color:#333;
	font-size:1.2em;
	font-weight:bold;
	transition: all 0.5s;
}

#menu ul li a:hover {
	text-decoration:none;
}


#menu ul li > a::after {
	content:'';
	position:absolute;
	left:0;
	bottom:3px;
	margin-left:20px;
	width: calc(100% - 40px);
	height:4px;
	background-color:#58a;
	transform: scale(0,1);
	transform-origin: center top;
	transition: transform 0.5s;
}

#menu ul li > a:hover {
	color:#028;
}

#menu ul li > a:hover::after {
	color:#028;
	transform: scale(1, 1);
}

/* ========HEADER CUSTOMIZE======== */
#header {
	position:fixed;
	top:-80px;
	left:0;
	width:100%;
	min-width:1200px;
	height:80px;
	padding-top:2px;
	border-bottom:1px solid #bbb;
	box-shadow:0 0 5px #ddd;
	background-color:rgba(255,255,255,0.9);
	overflow:hidden;
	z-index:100;
	transition: all 0.5s;
}

.headertitle {
	position:absolute;
	top:3px;
	left:3px;
	height:65px;
	z-index:10;
}

.headertitle img.logo {
	height:50px;
}



.headeropen {
	transform:translateY(80px);
}

.headermenulogo {
	height:60px;
}

.headermenu ul {
   display:flex;
   flex-wrap:wrap;
   list-style-type: none;
   margin:5px 0 0 0;
   padding:0;
}

.headermenu ul li {
	display:block;
	margin:0 10px;
	padding:0;
}

.headermenu ul li a {
	position:relative;
	display:block;
	padding:6px 12px;
	text-align:center;
	white-space:nowrap;
	color:#333;
	font-weight:800;
	transition: all 0.5s;
}

.headermenu ul li a:hover {
	text-decoration:none;
}




#footer {
	color:#fff;
	text-align:center;
	padding:20px 5px 3px 20px;
	background-color:rgb(0, 10, 120)
}

.copyright {
	margin-top:1em;
	font-size:0.7em;
}

#pageTop {
	display:none;
	position:fixed;
	bottom:30px;
	right:30px;
	z-index:30;
}


h2 {
	position:relative;
	padding:5px 5px 1px 5px;
	color:#04a;
	font-size:1.8em;
	font-weight:bold;
	text-align:center;
	text-shadow:0 0 6px #fff;
	margin-bottom:25px;
}

h2:before {
	content:"";
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:0.6em;
	background-image: linear-gradient(90deg, rgba(0, 30, 180, 0) 40%, rgba(0, 30, 180, 0.4) 50%, rgba(0, 30, 180, 0) 60%);
}


h3 {
	margin-top:0.3em;
	margin-bottom:0.5em;
	font-size:1.1em;
	
}

.h2class {
	position:relative;
	margin-bottom:0.5em;
	padding:5px 5px 1px 5px;
	font-size:1.5em;
	font-weight:bold;
}

.h2class:after {
	content:"";
	position:absolute;
	top: calc(100% + 3px);
	left:5px;
	width:1.5em;
	height:2px;
	background-color:rgb(0, 143, 152);
}

.jigyotitle {
	font-size:2.6em;
	font-weight:bold;
}




.main1200 {
	width:1200px;
}

.main900 {
	width:900px;
}

.main600 {
	width:600px;
}



/* パソコンonly用 */
@media screen and (min-width:566px){
	.sponly { display:none; }
	
	.tategaki {
		writing-mode: vertical-rl;
		text-orientation: mixed;
	}
	
	
	#overlay-button {
	  display:none;
	}
}

/* スマホ用 */
@media screen and (max-width:565px){
	.pconly { display:none; }
	
	.width400 { width:100%; }
	.width500 { width:100%; }
	.width600 { width:100%; }
	.width700 { width:100%; }
	.width800 { width:100%; }
	.width900 { width:100%; }
	.width1000 { width:100%; }
	.width1100 { width:100%; }
	.width1200 { width:100%; }
	
	#bodytop {
		min-width:100%;
	}

	
	
	#overlay-button {
		top:5px;
		right:5px;
	}
	
	#top {
		min-width:100%;
		width:100%;
	}
	
	#toplogin {
	   min-width:100%;
	   width:100%;
	   margin:0 auto;
	}
	
	#topsub {
		width:100%;
		min-width:300px;
	}
	
	#header {
		display:none;
		height:0;
	}
	
	#menu {
		display:none;
	}
	
	
	#contents {
	   width:100%;
	   min-width:100%;
	   height: calc(100vh - 50px):
	   overflow:auto;
	}
	
	.main1200 {
		width:100%;
	}
	
	.main900 {
		width:100%;
	}
	
	.main600 {
		width:100%;
	}
	
	h2:before {
		content:"";
		background-image: linear-gradient(90deg, rgba(0, 30, 180, 0) 10%, rgba(0, 30, 180, 0.4) 50%, rgba(0, 30, 180, 0) 90%);
	}
	
	
	
	.bn-a {
		
	}
	
	div.pconly ,span.pconly{
		display:none;
	}
	
	div.sponly{
		display:block;
	}
	
	span.sponly{
		display:inline;
	}
	
	.newsbox {
		width: calc(100% - 10px);
	}
	
	.newsimg {
		max-width:30vw;
		max-height:25vw;
		text-align:center;
		margin:5px;
	}
	
	.newscmt {
		flex:1;
	}
	
	#pageTop {
		bottom:10px;
		right:10px;
	}
}

/* --- inview -------------------------------------------------------------------*/
/*upスタイル
---------------------------------------------------------------------------*/
/*待機*/
.up {
	opacity: 0;
	transform:translateY(40px);
	transition: 1s 0.3s;
}

/*アクション*/
.upstyle {
	transform:translateY(0px);
	opacity: 1;
}

/*downスタイル
---------------------------------------------------------------------------*/
/*待機*/
.down {
	opacity: 0;
	transform:translateY(-30px);
	transition: 1s 0.3s;
}

/*アクション*/
.downstyle {
	transform:translateY(0px);
	opacity: 1;
}

/*leftスタイル
---------------------------------------------------------------------------*/
/*待機*/
.left {
	opacity: 0;
	transform:translateX(-30px);
	transition: 1s 0.5s;
}

/*アクション*/
.leftstyle {
	transform:translateX(0px);
	opacity: 1;
}


/*rightスタイル
---------------------------------------------------------------------------*/
/*待機*/
.right {
	opacity: 0;
	transform:translateX(30px);
	transition: 1s 0.3s;
}

/*アクション*/
.rightstyle {
	transform:translateX(0);
	opacity: 1;
}

/* fadein
---------------------------------------------------------------------------*/
.fin {
	opacity: 0;
	transition: 1s 0.3s;
}

/*アクション*/
.finstyle {
	opacity: 1;
}


