@charset "utf8";
/*=============================
  - header
	- fotter
	- navigation
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
  width: 100%;
  background-color: #fff;
  position: static;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .inner {
  width: 100%;
  max-width: 1860px;
  height: auto;
  margin: 0 auto;
}
#header .fixed-wrap { 
	height: 100%;
	padding: 0.75em 0;
}

#header .logo-wrap {}
#header .logo-wrap h1 {
    display: flex;
    align-items: center;
}
#header .logo-wrap h1 img {
    width: 266px;
    height: auto;
}
#header .logo-wrap h1 span {
    font-size: 14px;
    font-weight: bold;
    font-feature-settings: "palt";
    letter-spacing: 0.08em;
    padding-left: 0.5em;
}
@media screen and (max-width: 650px) {
  #header {
    width: 100%;
    height: 70px;
  }
  #header .inner {
    width: 100%;
    height: auto;
  }
  #header .fixed-wrap {
    display: block;
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    background: #fff;
    padding: 0 0;
  }
  #header .logo-wrap {
	width: 100%;
	height: auto;
	padding: 0.5em 2.5vw;
	display: flex;
	justify-content: space-between;
  }
  #header .logo-wrap h1 {
    flex-direction: column;
    align-items: flex-start;
  }
  #header .logo-wrap h1 a {
	width: 35vw;
	display: inherit;
  }
  #header .logo-wrap h1 img {
	width: 100%;
	height: auto;
  }
  #header .logo-wrap h1 span {
    font-size: 2.75vw;
    font-weight: 500;
    padding-left: 0;
    margin-top: 5px;
  }
  #header .logo-wrap .sp-only {
    margin-top: 2px;
  }
}


/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header .menu,
#header .sub-menu {
  display: flex;
  align-items: center;
}
#header .menu nav ul {
  padding-top: 15px;
}
#header .menu nav ul li {
  margin-left: 2em;
}
#header .menu nav ul li:first-child {
  margin-left: 0;
}
#header .menu nav ul li a {
  color: #525252;
  font-size: 16px;
  font-weight: 600;
  display: block;
  position: relative;
}
#header .menu nav ul li a:hover {
  transition: 0.3s;
  opacity: 0.7;
}
/*採用ご担当者の方はこちら*/
#header .menu nav ul .nav_contact a { 
    color: #4bb1a5;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header .menu nav ul .nav_contact a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 22px;
    background: url("../images/i_contact.png") no-repeat;
    background-size: contain;
    margin-right: 0.25em;
}

#header .menu .contact_wrap {
	display: flex;
	align-items: center;
	padding: 0 0;
    margin: 0 0;
    box-shadow: none;
    border-radius: 0;
}
#header .menu .sns_wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
#header .menu .sns_wrap a {
	width: 38px;
	height: 38px;
	margin-right: 1em;
}
#header .menu .sns_wrap a:last-child { margin-right: 1.5em; }


#header .menu .tel_wrap {
	margin-right: 2em;
    display: flex;
    flex-direction: column;
}
#header .menu .tel_wrap > div {
	font-size: 30px;
	font-family: "Open Sans", sans-serif;
	position: relative;
	display: flex;
	align-items: center;
}
#header .menu .tel_wrap > div::before {
	content: "";
	display: inline-block;
	width: 34px;
	height: 34px;
	background: url("../images/header_tel.png") no-repeat;
	background-size: contain;
	margin-right: 0.25em;
}
#header .menu .tel_wrap > span {
	font-size: 13px;
    padding-left: 3.25em;
}
#header .menu .btn-wrap .btn01 {
  width: 200px;
  min-width: 200px;
  padding: 13px 0 15px;
}
@media screen and (max-width: 650px) {
  #header .menu { 
	display: none;
	z-index: 100;
	position: relative;
  }
	
  #header .menu nav { width: 100%; }
  #header .menu nav ul {
    padding: 0 0;
  }
  #header .menu nav ul li {
    width: 100%;
    border: none;
    text-align: left;
    margin-left: 0;
	border-bottom: 1px solid #ddd;
  }
  #header .menu nav ul li:first-of-type { border-top: 1px solid #ddd; }
  #header .menu nav ul li a {
	font-size: 14px;
	padding: 15px 0;
	text-align: center;
	background: #fff;
  }
  #header .sub-menu {
	width: 100%;
	background: #fff;
    display: block;
  }
  #header .logo-wrap .menu-ani-button-wrap {
    display: block;
    width: 30px;
    height: 100%;
    margin-left: 10px;
  }
  #header .menu .btn-wrap {
	padding: 15px 8vw;
  }
  #header .menu .btn-wrap .btn01 {
    width: 100%;
    min-width: 100%;
    padding: 18px 0 20px;
  }
  #header .logo-wrap .sp-tel {
    display: block;
    padding-top: 3px;
  }
  #header .logo-wrap .sp-tel i {
    font-size: 30px;
    color: #4bb1a5;
    transform: rotate(105deg);
  }
  #header .logo-wrap .sp_sns {
	width: 7.0vw;
	margin-right: 10px;
  }
  #header .logo-wrap .sp_sns > img {
	width: 100%;
	height: auto;
  }
	
  #header .menu .contact_wrap { display: none; }
  
	
}


/*----------------------------------------------------
	sp ハンバーガーメニューcss
----------------------------------------------------*/
.menu-ani-button {
  cursor: pointer;
  position: absolute;
  width: 30px; /*---線の長さ---*/
  height: 25px; /*---線の太さ長さによって調整---*/
  margin-top: -10px;
}
.bar,
.bar:before,
.bar:after {
  height: 3px; /*---線の太さ---*/
  border-radius: 3px;
  width: 100%;
  background-color: #4bb1a5;
  transition: all 0.25s;
  position: absolute;
}
.bar {
  left: 0;
  top: 10px;
}
.bar:before {
  content: "";
  left: 0;
  top: -10px;
}
.bar:after {
  content: "";
  left: 0;
  top: 10px;
}

.menu-animated .bar {
  background-color: transparent;
  transition: all 0.25s;
}
.menu-animated .bar:before {
  transition: all 0.25s;
  content: "";
  transform: rotate(45deg);
  top: 0px;
}
.menu-animated .bar:after {
  transition: all 0.25s;
  content: "";
  transform: rotate(-45deg);
  top: 0px;
}



/*----------------------------------------------------
	footer
----------------------------------------------------*/
#footer {
  width: 100%;
  overflow: hidden;
}
#footer .foot_content {
  padding: 3em 1.5em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#footer .foot_logo {
    margin-right: 3em;
}

#footer .copy {
  font-size: 14px;
  line-height: 1.2em;
  padding: 8px 0;
}
@media screen and (max-width: 650px) {
  #footer .foot_content {
    padding: 2.5em 2.5vw;
    flex-direction: column;
  }
  #footer .foot_logo {
    width: 70%;
    margin: 0 auto 1.5em;
  }
	
}


/*----------------------------------------
ナビゲーション(フッター)
----------------------------------------*/
#foot_navi {}
#foot_navi > ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
#foot_navi > ul > li {
    padding-left: 1em;
    border-left: 2px solid #d7d7d7;
    padding-right: 3em;
}

#foot_navi .foot_navi_name {
    font-size: 18px;
    margin-bottom: 10px;
}
#foot_navi .foot_navi_menu {}
#foot_navi .foot_navi_menu li {
	line-height: 1.0em;
    margin-bottom: 10px;
}
#foot_navi .foot_navi_menu li a {
    font-size: 16px;
    line-height: 1.4em;
    display: inline-block;
}

@media screen and (max-width: 650px) {
	#foot_navi > ul {
		width: 100%;
		grid-template-columns: 1fr 1fr;
	}

	#foot_navi { width: 100%; }
	#foot_navi > ul > li {
		padding: 0 0 0;
		border-left: none;
	}

	#foot_navi .foot_navi_name {
		font-size: 16px;
	}

	#foot_navi .foot_navi_menu {}
	#foot_navi .foot_navi_menu li {
		margin-bottom: 8px;
	}
	#foot_navi .foot_navi_menu li a { font-size: 14px; }
	
}



/* トップへ戻る */
#scroll_top a {
  border-radius: 50%;
  background: rgba(75, 177, 165, 0.7);
  bottom: 70px;
  display: block;
  float: right;
  height: 70px;
  width: 70px;
  padding: 5px;
  position: fixed;
  right: 30px;
  text-align: center;
  padding-top: 16px;
  z-index: 9999;
}
#scroll_top a .fa-arrow-up::before {
  font-size: 36px;
  color: #fff;
}
@media screen and (max-width: 650px) {
  #scroll_top a {
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding-top: 10px;
  }
  #scroll_top a .fa-arrow-up::before {
    font-size: 30px;
  }
}

