@charset "UTF-8";
/*====================================
　早見表
  $conts-width
  $color-yellow  $color-blue
  $font-color-black
  $font-family-gothic  $font-family-mincho

  full-width
  flex-column  flex-center
  media(320px ＝ xs   480px ＝ s   768px ＝ m   1000px ＝ l)
  fs(max,1000～768px,768～480px,480～320px,min)  fs2(max,min)
  mt(max,min) mb mtb  pt pb ptb

====================================*/
/*====================================*/
/*----------------------------------
  Structure
----------------------------------
0. タグ設定
  0.1. ページサイズ
1. ヘッダー
  1.1	ナビゲーション
  1.2 見出し
2. コンテンツ
  2.1. トップへ戻る
3. フッター

====================================*/
/*----------------------------------
	0. タグ設定
------------------------------------*/
/* ------ color ------- */
:root {
  --color-bg-gray: #f1f1f1;
  --color-bg-dark: #E4E4E4;
  --color-bg-lightblue: #cdeefe;
  --color-font: #000;
  --color-blue: #0066ff;
}

/* ------ 幅 ------- */
:root {
  --bace-width: 1200px;
  --bace-width-narrow: 760px
}


/* fancy box 補正 */
:root {
  --fancybox-zIndex: 100000;
}



/* ------ ベース ------- */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7em;
  color: var(--color-font);
  font-family: 'Noto Sans JP',"游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  position: relative;
}
h2{
	font-size: 1.6rem;
}

/* ------ link ------- */
a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
	opacity: 0.8;
}

a.textlinkUl {
  text-decoration: underline;
}

a img {
  border: none;
  border: 0;
}

a:hover img.link {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

/* ------ img ------- */
img{
	max-width: 100%;
	height: auto;
}

.i_blank:after{
	font-family: "Font Awesome 5 Free";
	content: '\f2d2';
	margin-left: 6px;
}

/*----------------------------------
	1. ヘッダー
------------------------------------*/
#site-header {
	position: -webkit-sticky;
  position: sticky;
  top: 0;
	width: 100%;
  z-index: 10000;
  background-color: #fff;
}
.header-inner {
  width: 92%;
  margin: 0 auto;
  position: relative;
  /* padding-top: 50px; */
}

@media screen and (max-width: 1134px) {
  .header-inner {
    width: 98%;
  }
}
.header-main {
  padding: 3.5em 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1085px) {
  .header-main {
    padding: 0;
  }
}


/* ロゴ */
.header-titles{
	max-width: 45%;
	padding-bottom: 0.5em;
}
#site_logo{
	margin: 0 !important;
	font-size: 3.5rem;
	padding: 0.5em 0;
	font-weight: bold;
}
@media screen and (max-width: 1024px) {
	.header-titles{
		max-width: 35%;
		padding: 0 0.5em 0.5em;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 1085px) {
	.header-titles{
		max-width: 65%;
		padding: 0 0.5em 0.5em;
		box-sizing: border-box;
	}
	#site_logo{
		font-size: 2.5rem;
	}
}
@media(max-width:480px){
	#site_logo{
		font-size: 2.0rem;
	}
}


/*----------------------------------
	1.1. ナビゲーション
------------------------------------*/
#nav li a {
  display: block;
  color: #000;
  position: relative;
  font-size: 1.6rem;
}
#nav li.has-child ul{
	position: absolute;
	left:0;
	top:43px;
	z-index: 4;
	background: #fff;
	box-shadow: 3px 3px 15px -5px #c2c2c2;
	width:200px;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	display: initial;
}
#nav li.has-child ul li{
	margin: 0;
}
/*hoverしたら表示*/
#nav li.has-child:hover > ul,
#nav li.has-child ul li:hover > ul,
#nav li.has-child:active > ul,
#nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
#nav li.has-child ul li a{
	color: #000;
	border-bottom:solid 1px #c2c2c2;
	padding-left: 2em;
	font-size: 1.3rem;
}

#nav li.has-child ul li:last-child a{
	border-bottom:none;
}

#nav li.has-child ul li a:hover,
#nav li.has-child ul li a:active{
	background: var(--color-main);
}

@media screen and (max-width: 1520px) {
	#nav li.has-child ul{
		position: relative;
		left:0;
		top:0;
		width:100%;
		visibility:visible;
		opacity:1;
		display: block;
		transition:none;
		box-shadow: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		background: #ccc;
	}
	#nav li.has-child ul li{
		padding: 0;
		width: 50%;
		border-bottom: 1px solid #fff;
	}
	#nav li.has-child ul li a{
		color: #000;
    padding: 8px 0;
		border-right: 1px solid #fff;
		box-sizing: border-box;
		font-size: 1.2rem;
	}
	#nav li.has-child ul li:nth-child(even) a{
		border-right: none;
	}
}
@media screen and (max-width: 940px) {
  #nav li a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 860px) {
  #nav li#menu-item-29 {
    display: none;
  }
}
#nav li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 1084px) {
  .overlay {
    width: 0;
    height: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background: rgba(255, 255, 255, 0.7);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    transition: all 0.5s;
    min-height: 100vh;
  }
  #main.open {
    position: fixed;
    width: 100%;
  }
  #menu_btn {
    top: 1.2%;
    right: 4%;
    transition: 0.3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .menu-trigger {
    width: 18px;
    height: 16px;
    position: relative;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-blue);
    transition: all 0.5s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 7px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
  #nav {
    width: 400px;
    height: 100%;
    overflow: auto;
    padding: 45px 0;
    background: var(--color-bg-gray);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(400px);
    transition: all 0.5s;
  }
  #nav.open {
    transform: translateZ(0);
  }
  #nav li {
    padding: 0 20px;
  }
  #nav li a {
    position: relative;
    padding: 8px 20px;
    color: #000;
  }
  #nav li > a {
    border-bottom: 1px solid #999;
    text-align: center;
  }
  #nav li#menu-item-30 > a {
    border-top: 1px solid #999;
  }
  #nav li#menu-item-22 > a,
  #nav li#menu-item-22 .menu-item-22_cu {
    border-bottom: 1px dashed #999;
  }
  #nav .menu-item-has-children > a:first-of-type {
    position: relative;
    padding-right: 2em;
  }
  #nav .menu-item-has-children > a.open:first-of-type {
    color: #EE5400;
  }
  #nav .menu-item-has-children .sub-menu {
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li {
    padding: 0;
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
  }
  #nav .menu-item-has-children .sub-menu li a {
    padding: 0 20px 0 30px;
  }
}
@media print, screen and (min-width: 1085px) {
  #menu_btn, .overlay {
    display: none;
  }
  #nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
  #nav li {
    position: relative;
  }
  #nav li a {
    padding: 0.5em;
  }
  #nav .current-menu-item a {
    color: #000;
  }
  #nav .menu-item-has-children > a {
    padding-right: 40px;
  }
  #nav .menu-item-has-children > a.open:first-of-type,
  #nav .current-menu-item a {
    color: #707070;
  }
  #nav .current-menu-item li a {
    color: #707070;
  }
  #nav li ul.sub-menu {
    flex-direction: column;
    background: #fff;
    position: absolute;
    width: 140px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    padding: 10px 0;
  }
  #nav li ul.sub-menu li {
    width: 100%;
  }
  #nav li ul.sub-menu li a {
    line-height: 1.6em;
    color: #707070;
    padding: 0.5em 20px;
    font-size: 90%;
  }
  #nav li ul.sub-menu li a:hover {
    color: #83759a;
  }
}

#nav li:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  #nav li:not(:last-child) {
    margin-right: 0px;
  }
}

@media (max-width: 540px) {
  #menu_btn {
    top: 0;
    right: 2%;
  }
}
@media (max-width: 480px) {
  #menu_btn {
    top: 0;
    right: 1%;
  }
}
@media (max-width: 420px) {
  #menu_btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
  }
}

/* 常設お問い合わせ */
.header-sub_sp-fix{
	display: none;
}
.head_contact{
	position: absolute;
	top: 5px;
	right: 0;
	display: flex;
	gap: 10px;
	align-items: center;
}
.head_contact .recruiting_btn a{
	font-size: 1.5rem;
	padding: 0.5em 2.5em;
	background: #FCA518;
	border-radius: 50px;
	color: #fff;
}
.head_contact .recruiting_btn a:hover{
	background: #06265F;
	text-decoration: none;
}
.head_contact .jobs_btn a{
	font-size: 1.5rem;
	padding: 0.5em 2.5em;
	background: #46B5D4;
	border-radius: 50px;
	color: #fff;
}
.head_contact .jobs_btn a:hover{
	background: #06265F;
	text-decoration: none;
}
.contact_line {
  width: 40px;
  height: 40px;
}
.line_btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 1085px) {
	.head_contact{
		display: none;
	}
	.header-sub_sp-fix{
		z-index: 10000;
		position: fixed;
		display: flex;
		justify-content: space-between;
		bottom: 0;
		top: auto;
		right: 0;
		left: 0;
		height: auto;
		margin: auto;
		padding-bottom: 0;
		padding-bottom: constant(safe-area-inset-bottom);
		padding-bottom: env(safe-area-inset-bottom);
		background: #fff;
	}
	.header-sub_sp-fix .header-sub_contact{
		display: flex;
		flex-wrap: nowrap;
		width: 100%;
		margin: 0 auto;
		justify-content: center;
		font-size: 1.3rem;
	}
	.header-sub_btn {
		background-image: linear-gradient(90deg, #0066ff, #00a5ff);
		text-align: center;
		width: 45%;
	}
	.header-sub_btn a{
		display: inline-block;
		padding: 0.6em 1em;
		color: #fff;
		width: 100%;
		box-sizing: border-box;
	}
	.header-sub_btn a::before{
			font-family: "Font Awesome 5 Free";
			content: '\f0e0';
			font-size: 1.2rem;
			font-weight: 900;
			margin-right: 6px;
			color: #fff;
	}
	.header-sub_tel {
		background-image: linear-gradient(90deg, #ff7a00, #ffa500);
		text-align: center;
		width: 45%;
	}
	.header-sub_tel a{
		color: #fff;
		display: inline-block;
		padding: 0.6em 1em;
		width: 100%;
		box-sizing: border-box;
	}
	.header-sub_tel a::before{
			font-family: "Font Awesome 5 Free";
			content: '\f095';
			font-size: 1.2rem;
			font-weight: 900;
			margin-right: 7px;
			color: #fff;
	}
	.header-sub_top {
		background: #E4E4E4;
		width: 10%;
		text-align: center;
	}
	.header-sub_top a{
		text-align: center;
		width: 100%;
		height: auto;
		display: inline-block;
		color: var(--color-blue);
		padding-top: 10px;
		box-sizing: border-box;
	}
	.header-sub_top a::before{
			font-family: "Font Awesome 5 Free";
			content: '\f077';
			font-size: 1.2rem;
			font-weight: 900;
			color: var(--color-blue);
	}


}


/*----------------------------------
	1.2. 見出し
------------------------------------*/
p {
  margin-bottom: 1em;
}

/*----------------------------------
	2. コンテンツ
------------------------------------*/




/*----------------------------------
	3. ページ下お問い合わせリンク
------------------------------------*/
.page-bottom {
	background: url(../images/top_mv.png) no-repeat center center;
	background-size: cover;
}
@media screen and (max-width: 768px) {
}


/*----------------------------------
	3. フッター
------------------------------------*/
#site-footer {
	padding: 3em 0 0;
}
.footer-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: var(--bace-width);
  width: 92%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }
	#site-footer{
    padding: 3em 0 2.7em 0;
  }
}
.footer-nav {
  width: 66%;
}
.footer-info {
  width: 33%;
}
@media (max-width: 768px) {
  .footer-nav {
    margin-bottom: 1em;
		width: 100%;
  }
  .footer-info {
		width: 100%;
  }
}
@media (max-width: 540px) {
  .footer-nav {
    flex-direction: column;
  }
}
.footer-nav ul{
  display: flex;
  justify-content: flex-end;
	flex-wrap: wrap;
}
.footer-nav ul li{
  margin: 0 1em 0.3em 1em;
}
.footer-nav a {
  font-size: 1.6rem;
  color: #000;
}

@media screen and (max-width: 768px) {
	.footer-nav ul{
		justify-content: flex-start;
	}
	.footer-nav ul li{
		margin: 0 0.5em 0.3em 0.5em;
		width: 40%;
	}
  .footer-info {
    margin: 0 0 1em 0;
		text-align: center;
  }
}
.footer-info img {
  width: 100%;
}
.footer-info address {
  font-style: normal;
  font-size: clamp(14px, 2.92vw, 16px);
  color: #000;
  line-height: 1.5em;
  padding-top: 0.8em;
}
.f_logo{
	font-size: 2.4rem;
	font-weight: bold;
}
.footer-copyright {
  text-align: center;
	font-size: clamp(13px, 1.69vw, 14px);
	background: #0066ff;
	color: #fff;
	margin: 0 !important;
	padding: 0.5em 0;
}
.footer-copyright a{
	color: #fff;
}
@media screen and (max-width: 768px) {
	.footer-copyright {
		text-align: center;
	}
}


.pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color:  var(--color-blue);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  color: #fff;
	z-index: 99999;
}
@media screen and (max-width: 768px) {
  .pagetop {
		display: none !important;
    bottom: 4px;
    right: 10px;
  }
}
.pagetop:hover {
  opacity: 0.7;
}



/*# sourceMappingURL=base.css.map */