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

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');

/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
  width: 100%;
  background-color: #fff;
  padding: 30px 0 20px;
  position: static;
  z-index: 1;
}
#header .inner {
	width: 1380px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    padding: 0 0;
    margin: 0 auto;
    display: block;
}

#header .fixed-wrap {
    height: 100%;
    display: flex;
}
#header .logo-wrap {
	padding: 1em 1em;
}
@media screen and (max-width: 650px) {
  #header {
    width: 100%;
	height: 53px;
	padding: 0 0;
  }
  #header .inner {
    width: 100%;
    height: auto;
	margin: 0 0;
  }
	
  #header .fixed-wrap {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
  }

  #header .logo-wrap {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 8px 2.5vw;
  }
  #header .logo-wrap h1 {
    width: 50%;
  }
  #header .logo-wrap h1 img {
	width: 100%;
	display: block;
  }
  #header .logo-wrap .menu-ani-button-wrap {
    display: block;
    width: 30px;
    height: 100%;
    margin-left: 10px;
  }
  #header .logo-wrap .sp-tel {
    display: block;
    padding-top: 3px;
  }
  #header .logo-wrap .sp-tel i {
    font-size: 30px;
    color: #02c9fb;
    transform: rotate(105deg);
  }
}

/*----------------------------------------------------
	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: #02c9fb;
  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;
}


/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header .menu {
	display: flex;
	height: 100%;
}
#header .menu nav,
#header .menu .sub-menu { 
	display: flex;
	align-items: center;
	height: 100%;
}

#header .menu nav ul {
	display: flex; 
	height: 100%;
}
#header .menu nav ul li {
	padding: 0 0;
    border-left: 1px solid #dcdcdc;
}
#header .menu nav ul li:last-child {
    border-right: 1px solid #dcdcdc;
}
#header .menu nav ul li a {
	color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 0 1.5em;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
#header .menu nav ul li a:hover {
  opacity: 0.7;
}

#header .menu .sp-link {
	color: #000;
    font-family: "Comfortaa", sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 2.0em;
    padding: 0 1em 0 2em;
    background: url(../images/header_tel.png) no-repeat left 20px top 10px;
    background-size: 20px 23px;
}
#header .menu .btn-wrap { height: 100%; }
#header .menu .btn01 {
    font-size: 15px;
	line-height: 2.2em;
    width: 150px;
    min-width: inherit;
    height: 100%;
    background: #02c9fb;
    border-radius: 0 13px 13px 0;
}
@media screen and (max-width: 650px) {
  #header .menu { display: none; }
  #header .menu nav ul {
	width: 100%;
	flex-direction: column;
  }
  #header .menu nav ul li {
	width: 100%;
	background: #fff;
	border-left: none;
	border-bottom: 1px solid #ddd;
  }
  #header .menu nav ul li:first-of-type { border-top: 1px solid #ddd; }
  #header .menu nav ul li a {
    padding: 15px 0;
	justify-content: center;
  }
  #header .sub-menu {
    display: block;
  }
	
  #header .menu .btn-wrap {
	width: 100%;
	height: auto;
  }
  #header .menu .btn-wrap .btn01 {
	width: 100%;
	text-align: center;
	line-height: 1.6em;
	padding: 15px 0;
	border-radius: 0 0 8px 8px;
	display: block;
  }
}



/*----------------------------------------------------
	footer
----------------------------------------------------*/
#footer {
	width: 100%; 
	background: #edecec;
}
#footer .outer {
  padding: 2em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ナビゲーション(フッター) */
#foot_navi ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
#foot_navi ul > li {
  padding-right: 2em;
}
#foot_navi ul > li:last-of-type {
  padding-right: 0;
}
#foot_navi ul > li > a {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

#footer .copy {
  font-size: 12px;
  padding: 13px 0;
}

 /* トップへ戻る */
#scroll-top a {
  border-radius: 50%;
  background: rgba(47, 187, 220, 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) {
  #footer {}
  #footer .outer {
    padding: 2em 3.5vw;
    flex-direction: column;
  }
  
  /* ナビゲーション(フッター) */
  #foot_navi ul {
	margin-top: 20px;
	justify-content: center;
  }
  #foot_navi ul > li {
    padding: 0.25em 0.75em;
  }
  #foot_navi ul > li > a {
    font-size: 12px;
  }

  /* トップへ戻る */
  #scroll-top a {
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding-top: 10px;
  }
  #scroll-top a .fa-arrow-up::before {
    font-size: 30px;
  }
	
}
